Web APIs

Lecture 13

Dr. Colin Rundel

URLs

Query Strings

Provides named parameter(s) and value(s) that modify the behavior of the resulting page.


Format generally follows:

?arg1=value1&arg2=value2&arg3=value3


Some quick examples,

  • http://lmgtfy.com/?q=hello%20world

  • http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=1600+Amphitheatre+Parkway

  • https://nomnom-prod-api.dennys.com/mapbox/geocoding/v5/mapbox.places/raleigh,%20nc.json? types=country,region,postcode,place&country=us,pr,vi,gu,mp,ca

URL encoding

This is will often be handled automatically by your web browser or other tool, but it is useful to know a bit about what is happening

  • Spaces will encoded as ‘+’ or ‘%20’

  • Certain characters are reserved and will be replaced with the percent-encoded version within a URL

! # $ & ( )
%21 %23 %24 %26 %27 %28 %29
* + , / : ; =
%2A %2B %2C %2F %3A %3B %3D
? @ [ ]
%3F %40 %5B %5D
  • Characters that cannot be converted to the correct charset are replaced with HTML numeric character references (e.g. a Σ would be encoded as Σ )

Examples

URLencode("http://lmgtfy.com/?q=hello world")
[1] "http://lmgtfy.com/?q=hello%20world"
URLdecode("http://lmgtfy.com/?q=hello%20world")
[1] "http://lmgtfy.com/?q=hello world"
URLencode("!#$&'()*+,/:;=?@[]")
[1] "!#$&'()*+,/:;=?@[]"
URLencode("!#$&'()*+,/:;=?@[]", reserved = TRUE)
[1] "%21%23%24%26%27%28%29%2A%2B%2C%2F%3A%3B%3D%3F%40%5B%5D"
URLencode("!#$&'()*+,/:;=?@[]", reserved = TRUE) |> 
  URLdecode()
[1] "!#$&'()*+,/:;=?@[]"
URLencode("Σ")
[1] "%CE%A3"
URLdecode("%CE%A3")
[1] "Σ"

RESTful APIs

REST

REpresentational State Transfer

  • describes an architectural style for web services (not a standard)

  • all communication via HTTP requests

  • Key features:

    • client–server architecture
    • addressible (specific URL endpoints)
    • stateless (no client information stored between requests)
    • layered / hierarchical
    • cacheability

HTTP Methods / Verbs

  • GET - fetch a resource

  • POST - create a new resource

  • PUT - full update of a resource

  • PATCH - partial update of a resource

  • DELETE - delete a resource.

Less common verbs: HEAD, TRACE, OPTIONS.

Structure of an HTTP Request


Structure of an HTTP Response


Status Codes

  • 1xx: Informational Messages

  • 2xx: Successful

  • 3xx: Redirection

  • 4xx: Client Error

  • 5xx: Server Error

Example 1:
An API of Ice And Fire

Documentation

While there is a lot of standardization, every API is different and you will need to review the documentation of each.

See documentation here for AAOIF.


Resources / endpoints:

  • Root - https://www.anapioficeandfire.com/api
  • List books - https://www.anapioficeandfire.com/api/books
  • Specific book - https://www.anapioficeandfire.com/api/books/1

Pagination

An API of Ice And Fire provides a lot of data about the world of Westeros. To prevent our servers from getting cranky, the API will automatically paginate the responses. You will learn how to create requests with pagination parameters and consume the response.

Things worth noting
Information about the pagination is included in the Link header Page numbering is 1-based You can specify how many items you want to receive per page, the maximum is 50

Constructing a request with pagination
You specify which page you want to access with the ?page parameter, if you don’t provide the ?page parameter the first page will be returned. You can also specify the size of the page with the ?pageSize parameter, if you don’t provide the ?pageSize parameter the default size of 10 will be used.

Demo 1 - Basic access & pagination

httr2

Background

httr2 is a package designed around the construction and handling of HTTP requests and responses. It is a rewrite of the httr package and includes the following features:

  • Pipeable API

  • Explicit request object, with support for

    • rate limiting

    • retries

    • OAuth

    • Secrure secret storage

  • Explicit response object, with support for

    • error codes / reporting

    • common body encoding (e.g. json, etc.)

request objects

A new request object is constructed via request() which is then modifed via req_*() functions

Some useful req_*() functions:

  • req_method() - set HTTP method

  • req_url_query() - add query parameters to URL

  • req_url_*() - add or modify URL

  • req_body_*() - set body content (various formats and sources)

  • req_user_agent() - set user-agent

  • req_dry_run() - shows the exact request that will be made

response objects

A request is made via req_perform() which then returns a response object (the most recent response can also be retrieved via last_response()). Content of the response are accessed via the resp_*() functions

Some useful resp_*() functions:

  • resp_status() - extract HTTP status code (resp_status_desc() for a text description)

  • resp_content_type() - extract content type and encoding

  • resp_body_*() - extract body from a specific format (json, html, xml, etc.)

  • resp_headers() - extract response headers

Example 2 - rottentomatoes.com

read_html("https://www.rottentomatoes.com")
{html_document}
<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml" prefix="fb: http://www.facebook.com/2008/fbml og: http://opengraphprotocol.org/schema/">
[1] <head prefix="og: http://ogp.me/ns# flixstertomatoes: http://ogp.me/ns/ap ...
[2] <body class="body no-touch js-mptd-layout">\n        <user-activity-manag ...
library(httr2)
req = request("https://www.rottentomatoes.com")
req
<httr2_request>
GET https://www.rottentomatoes.com
Body: empty
req |> req_user_agent()
<httr2_request>
GET https://www.rottentomatoes.com
Body: empty
Options:
• useragent: 'httr2/1.0.0 r-curl/5.2.0 libcurl/8.4.0'

Response

(req_good = req |> 
  req_user_agent())
<httr2_request>
GET https://www.rottentomatoes.com
Body: empty
Options:
• useragent: 'httr2/1.0.0 r-curl/5.2.0 libcurl/8.4.0'
(req_bad = req |> 
  req_user_agent(options()$HTTPUserAgent))
<httr2_request>
GET https://www.rottentomatoes.com
Body: empty
Options:
• useragent: 'RStudio Desktop (2023.9.0.463); R (4.3.1
aarch64-apple-darwin23.0.0 aarch64 darwin23.0.0)'
(res_good = req_good |> req_perform())
<httr2_response>
GET https://www.rottentomatoes.com/
Status: 200 OK
Content-Type: text/html
Body: In memory (368742 bytes)
req_bad |> req_perform()
Error in `req_perform()`:
! HTTP 403 Forbidden.

Response body

res_good |> resp_body_html()
{html_document}
<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml" prefix="fb: http://www.facebook.com/2008/fbml og: http://opengraphprotocol.org/schema/">
[1] <head prefix="og: http://ogp.me/ns# flixstertomatoes: http://ogp.me/ns/ap ...
[2] <body class="body no-touch js-mptd-layout">\n        <user-activity-manag ...
res_good |> resp_body_string()
[1] "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\" xmlns=\"http://www.w3.org/1999/xhtml\" prefix=\"fb: http://www.facebook.com/2008/fbml og: http://opengraphprotocol.org/schema/\">\n    <head prefix=\"og: http://ogp.me/ns# flixstertomatoes: http://ogp.me/ns/apps/flixstertomatoes#\">\n        \n        \n            <script\n                charset=\"UTF-8\"\n                crossorigin=\"anonymous\"\n                data-domain-script=\"7e979733-6841-4fce-9182-515fac69187f\"\n                integrity=\"sha384-TKdmlzVmoD70HzftTw4WtOzIBL5mNx8mXSRzEvwrWjpIJ7FZ/EuX758yMDWXtRUN\"\n                src=\"https://cdn.cookielaw.org/consent/7e979733-6841-4fce-9182-515fac69187f/otSDKStub.js\"\n                type=\"text/javascript\"\n            >\n            </script>\n            <script type=\"text/javascript\">\n                function OptanonWrapper() { }\n            </script>\n        \n\n        \n            <script\n                ccpa-opt-out-ids=\"USP\"\n                ccpa-opt-out-geo=\"US\"\n                ccpa-opt-out-lspa=\"false\"\n                charset=\"UTF-8\"\n                src=\"https://cdn.cookielaw.org/opt-out/otCCPAiab.js\"\n                type=\"text/javascript\"\n            >\n            </script>\n        \n        \n\n        \n            \n            <script src=\"/assets/pizza-pie/javascripts/bundles/roma/rt-common.js?single\"></script>\n            \n        \n\n        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n        <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n        <link rel=\"shortcut icon\" sizes=\"76x76\" type=\"image/x-icon\" href=\"https://www.rottentomatoes.com/assets/pizza-pie/images/favicon.ico\" />\n\n        \n            <title>Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews | Rotten Tomatoes</title>\n            <meta name=\"description\" content=\"Rotten Tomatoes, home of the Tomatometer, is the most trusted measurement of quality for Movies & TV. The definitive site for Reviews, Trailers, Showtimes, and Tickets\">\n\n            \n                <link rel=\"canonical\" href=\"https://www.rottentomatoes.com/\">\n            \n\n            \n                \n            \n\n            \n\n            \n                <meta property=\"fb:app_id\" content=\"\">\n                <meta property=\"og:site_name\" content=\"Rotten Tomatoes\">\n                <meta property=\"og:title\" content=\"Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews\">\n\n                <meta property=\"og:description\" content=\"Rotten Tomatoes, home of the Tomatometer, is the most trusted measurement of quality for Movies & TV. The definitive site for Reviews, Trailers, Showtimes, and Tickets\">\n                <meta property=\"og:type\" content=\"website\">\n                <meta property=\"og:url\" content=\"https://www.rottentomatoes.com/\">\n                <meta property=\"og:image\" content=\"https://www.rottentomatoes.com/assets/pizza-pie/head-assets/images/RT_TwitterCard_2018.jpg\">\n                <meta property=\"og:locale\" content=\"en_US\">\n            \n\n            <meta name=\"twitter:card\" content=\"summary_large_image\">\n            <meta name=\"twitter:image\" content=\"https://www.rottentomatoes.com/assets/pizza-pie/head-assets/images/RT_TwitterCard_2018.jpg\">\n            <meta name=\"twitter:title\" content=\"Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews\">\n            <meta name=\"twitter:text:title\" content=\"Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews\">\n            <meta name=\"twitter:description\" content=\"Rotten Tomatoes, home of the Tomatometer, is the most trusted measurement of quality for Movies & TV. The definitive site for Reviews, Trailers, Showtimes, and Tickets\">\n            <meta name=\"twitter:site\" content=\"@rottentomatoes\">\n\n            <!-- JSON+LD -->\n            \n\n            \n            <script>\n                var dataLayer = dataLayer || [];\n                dataLayer.push({\"webVersion\":\"node\",\"rtVersion\":3.1,\"loggedInStatus\":\"\",\"customerId\":\"\",\"pageName\":\"rt | homepage\"});\n            </script>\n\n            \n                \n                    <script id=\"mps-page-integration\">\n                        window.mpscall = {\"cag[score]\":null,\"cag[certified_fresh]\":null,\"cag[fresh_rotten]\":null,\"cag[rating]\":null,\"cag[release]\":null,\"cag[movieshow]\":null,\"cag[genre]\":null,\"cag[urlid]\":null,\"cat\":\"home\",\"field[env]\":\"production\",\"field[rtid]\":null,\"path\":\"/\",\"site\":\"rottentomatoes-web\",\"title\":\"Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews\",\"type\":\"index\"};\n                        var mpsopts={'host':'mps.nbcuni.com', 'updatecorrelator':1};\n                        var mps=mps||{};mps._ext=mps._ext||{};mps._adsheld=[];mps._queue=mps._queue||{};mps._queue.mpsloaded=mps._queue.mpsloaded||[];mps._queue.mpsinit=mps._queue.mpsinit||[];mps._queue.gptloaded=mps._queue.gptloaded||[];mps._queue.adload=mps._queue.adload||[];mps._queue.adclone=mps._queue.adclone||[];mps._queue.adview=mps._queue.adview||[];mps._queue.refreshads=mps._queue.refreshads||[];mps.__timer=Date.now||function(){return+new Date};mps.__intcode=\"v2\";if(typeof mps.getAd!=\"function\")mps.getAd=function(adunit){if(typeof adunit!=\"string\")return false;var slotid=\"mps-getad-\"+adunit.replace(/\\W/g,\"\");if(!mps._ext||!mps._ext.loaded){mps._queue.gptloaded.push(function(){typeof mps._gptfirst==\"function\"&&mps._gptfirst(adunit,slotid);mps.insertAd(\"#\"+slotid,adunit)});mps._adsheld.push(adunit)}return'<div id=\"'+slotid+'\" class=\"mps-wrapper\" data-mps-fill-slot=\"'+adunit+'\"></div>'};\n                    </script>\n                    <script src=\"//mps.nbcuni.com/fetch/ext/load-rottentomatoes-web.js?nowrite=2\" id=\"mps-load\"></script>\n                \n            \n        \n\n        \n        \n\n        <link rel=\"manifest\" href=\"https://www.rottentomatoes.com/assets/pizza-pie/manifest/manifest.json\" />\n\n        <link rel=\"apple-touch-icon\" href=\"https://www.rottentomatoes.com/assets/pizza-pie/head-assets/images/apple-touch-icon-60.jpg\" />\n        <link rel=\"apple-touch-icon\" sizes=\"152x152\" href=\"https://www.rottentomatoes.com/assets/pizza-pie/head-assets/images/apple-touch-icon-152.jpg\" />\n        <link rel=\"apple-touch-icon\" sizes=\"167x167\" href=\"https://www.rottentomatoes.com/assets/pizza-pie/head-assets/images/apple-touch-icon-167.jpg\" />\n        <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"https://www.rottentomatoes.com/assets/pizza-pie/head-assets/images/apple-touch-icon-180.jpg\" />\n\n        \n        \n\n        \n        <meta name=\"google-site-verification\" content=\"VPPXtECgUUeuATBacnqnCm4ydGO99reF-xgNklSbNbc\" />\n\n        \n        <meta name=\"msvalidate.01\" content=\"034F16304017CA7DCF45D43850915323\" />\n        <meta name=\"theme-color\" content=\"#FA320A\">\n\n        <!-- DNS prefetch -->\n        <meta http-equiv=\"x-dns-prefetch-control\" content=\"on\">\n        \n            <link rel=\"dns-prefetch\" href=\"//www.rottentomatoes.com\" />\n        \n        \n            <link rel=\"preconnect\" href=\"//www.rottentomatoes.com\" />\n        \n\n        \n\n        \n<!-- BEGIN: critical-->\n<style id=\"critical-path\">*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}a,aside,body,button,div,h2,h3,html,img,li,p,section,span,ul{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}aside,section{display:block}body{line-height:1}li,ul{list-style:none}a{text-decoration:none}img{vertical-align:middle}h2,h3{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{background-color:transparent}:root{--fontFranklinGothic:\"Franklin Gothic\",-apple-system,BlinkMacSystemFont,\"PT Sans\",Arial,Sans-Serif;--fontNeusa:\"Neusa\",\"Impact\",\"Helvetica Neue\",Arial,Sans-Serif;--fontMonospace:\"Courier New\",Courier,monospace;--fontRtIcon:\"rt-icon\"}:root{--red:#FA320A;--redRGB:250,50,10;--redDark1:#A33E2A;--blue:#3976DC;--blueHover:#2A62C0;--gray:#757A84;--grayLight1:#F3F3F3;--grayLight2:#E9E9EA;--grayLight3:#DCDCE6;--grayLight4:#BCBDBE;--grayDark1:#505257;--grayDark2:#2A2C32;--grayDark3:#171C20;--orange:#FF7300;--yellow:#FFB600;--white:#FFFFFF;--black:#000000;--blackRGB:0,0,0;--yellowLegacy:#FFE400;--blueLightLegacy:#EBF3FE}:root{--borderRadius:6px}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.leaderboard_wrapper{height:50px;display:flex;justify-content:center;width:100%}.rectangle_ad{margin:10px auto;width:300px}@media (min-width:768px){.leaderboard_wrapper{padding:5px 0 5px;height:100px;min-height:100px}.sleaderboard_wrapper{display:flex;justify-content:center;align-items:center;background-color:var(--white);padding:10px;text-align:center}}html{--webkitFontSmoothing:antialiased;--mozOsxFontSmoothing:grayscale;font-size:1rem}body{background-color:var(--grayLight1);color:var(--grayDark2);font-family:var(--fontFranklinGothic);font-size:1rem;line-height:1.5;letter-spacing:.016em}p{font-family:var(--fontFranklinGothic);font-size:1rem;font-weight:400;line-height:1.25;margin-bottom:1.25rem}.p--short{line-height:1.375}section{margin-bottom:2.5rem}.button,button{display:inline-block;height:40px;font-family:var(--fontFranklinGothic);font-size:.875rem;font-weight:500;line-height:2.85;padding:0 16px;text-align:center;text-overflow:ellipsis;text-transform:uppercase;vertical-align:middle;-webkit-line-clamp:2;white-space:nowrap;word-wrap:break-word;border:1px transparent;border-radius:4px;background-color:var(--blue);color:var(--white)}.button--link{height:auto;background-color:transparent;color:var(--blue);font-size:1rem;line-height:inherit;padding:0}button.transparent{width:inherit;height:inherit;padding:0;background:0 0}.hide{display:none!important}.h2,h2{font-family:var(--fontNeusa);font-weight:500;font-size:1.25rem;letter-spacing:0;line-height:1.2;padding-left:9px;text-transform:uppercase;margin-bottom:1em}.h2:before,h2:before{position:absolute;content:\"\";height:1.1em;border-left:3px solid var(--red);margin:-1px 0 0 -9px}h3{font-family:var(--fontFranklinGothic);font-weight:500;font-size:1.25rem;line-height:1.2;letter-spacing:0;margin-bottom:1.25rem}.h4{font-family:var(--fontFranklinGothic);font-weight:600;line-height:1.17;letter-spacing:.01em}.h4{font-size:1.125rem;margin-bottom:1rem}img{max-width:100%}a{background-color:transparent;color:var(--blue);fill:var(--grayDark2);font-family:var(--fontFranklinGothic);font-size:inherit;font-weight:400;line-height:inherit;letter-spacing:inherit;text-decoration:none}.a--short{font-weight:500;text-transform:uppercase}ul{padding:5px 0}ul ul{margin-top:0;margin-left:12px}li{margin-bottom:.4em;text-align:-webkit-match-parent}.list-inline{list-style:none}.list-inline>li{display:inline-block}#main_container{position:relative}.rt-layout__body{line-height:1.25}.rt-layout__content{background-color:var(--white);padding-left:15px;padding-right:15px;padding-bottom:24px}.rt-layout__content section{max-width:100vw;overflow-x:hidden}.container{margin-right:auto;margin-left:auto}@media (min-width:768px){.container{overflow-x:unset;width:1100px;padding-left:15px;padding-right:15px}.rt-layout__body{padding:0}}[skeleton]{display:block;background-color:#eee;color:transparent}[skeleton] *{visibility:hidden}[skeleton=panel]{border-radius:4px}[skeleton=transparent]{background-color:transparent}.unset{font-size:unset;font-family:unset;font-weight:unset;line-height:unset;margin:unset;padding:unset;color:inherit;letter-spacing:unset;text-transform:unset}rt-header{height:55px}rt-header[skeleton]{display:block;background-color:var(--red)}rt-header .skip-link{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}rt-header a{color:var(--grayDark2)}rt-header a[slot=logo] img{height:35px}rt-header li ul,rt-header ul{margin:0;padding:0}rt-header ul[slot=nav-links] a,rt-header ul[slot=nav-links] button{margin:0 15px;color:var(--white);font-family:var(--fontFranklinGothic);font-size:.875rem;font-weight:500;line-height:inherit}rt-header ul[slot=nav-links] li{margin-bottom:.4em}rt-header ul[slot=nav-links] .masthead-user-link{display:flex;align-items:center;color:var(--white);font-size:inherit;font-weight:500;margin-left:10px}rt-header ul[slot=nav-links] .masthead-user-link img{height:14px;margin-right:5px;vertical-align:text-bottom}rt-header ul[slot=nav-links] .masthead-user-link p{margin-bottom:0}rt-header ul[slot=nav-links] .masthead-user-link rt-icon{fill:var(--white)}rt-header ul[slot=nav-links] rt-header-user-info{position:absolute;top:30px;left:auto;right:0;z-index:103}rt-header ul[slot=nav-links] rt-header-user-info a{position:relative;margin:0;color:var(--grayDark2);font-size:1rem;font-weight:400;z-index:2}rt-header ul[slot=nav-links] rt-header-user-info .username{font-size:1rem;font-weight:500px;color:var(--grayDark2)}rt-header ul[slot=nav-links] rt-header-user-info .dropdown-link{color:var(--grayDark2);margin-bottom:.4em}rt-header ul[slot=nav-links] rt-header-user-info .rating-count-block,rt-header ul[slot=nav-links] rt-header-user-info .wts-count-block{font-size:.875rem;font-weight:400px;color:var(--gray)}rt-header ul[slot=nav-links] rt-header-user-info .wts-count-block rt-icon[icon=plus]{fill:var(--blue)}rt-header ul[slot=nav-links] rt-header-user-info .rating-count-block rt-icon[icon=star]{fill:var(--yellow)}rt-header rt-header-nav-item{padding:13px 15px;color:var(--white)}rt-header rt-header-nav-item>a[slot=link]{color:var(--white);font-family:var(--fontNeusa);letter-spacing:.9px;text-transform:uppercase;position:relative}rt-header rt-header-nav-item temporary-display{position:absolute;top:-20px;right:-15px}rt-header rt-header-nav-item temporary-display rt-badge{font-size:.75rem}rt-header rt-header-nav-item-dropdown[aria-expanded=false]{display:none}rt-header rt-header-nav-item-dropdown-list:last-child{margin-right:0}rt-header rt-header-nav-item-dropdown-list{margin-right:15px}rt-header rt-header-nav-item-dropdown-list ul{margin-bottom:15px}rt-header rt-header-nav-item-dropdown-list li{margin-bottom:.4em}rt-header rt-header-nav-item-dropdown-list a{display:flex;width:100%}rt-header rt-header-nav-item-dropdown-list a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:215px}rt-header rt-header-nav-item-dropdown-list a.what-to-watch{align-items:center;gap:3px}rt-header rt-header-nav-item-dropdown-list p{display:flex}@media (min-width:768px){rt-header{height:100px}rt-header a[slot=logo]{margin:15px}rt-header a[slot=logo] img{height:50px}}search-algolia{flex:1;font-size:1rem;z-index:199;margin-left:15px}search-algolia[skeleton]{height:35px;border-radius:26px;margin-right:15px;width:100%}search-algolia-controls a,search-algolia-controls button,search-algolia-controls input{font-family:var(--fontFranklinGothic)}search-algolia-controls input{color:var(--white);border:1px solid var(--white)}search-algolia-controls a rt-icon,search-algolia-controls button rt-icon{fill:var(--white)}search-algolia-controls a{display:flex;width:fit-content;width:-moz-fit-content}search-algolia-controls button{display:flex;border-radius:0;background:0 0;height:auto;padding:0;line-height:0}search-algolia-controls button.search-clear{font-size:1.25rem}search-algolia-controls button.search-cancel{padding-right:15px;font-size:1rem}search-algolia-results-category{margin-bottom:40px;color:var(--grayDark2)}search-algolia-results-category[slot=none]{margin-bottom:0}search-algolia-results-category ul{padding:0}@media (min-width:768px){search-algolia{margin-right:15px}}bottom-nav{position:fixed;bottom:0;left:0;width:100%;height:84px;z-index:100}@media (min-width:768px){bottom-nav{display:none}}.trending-bar{background-color:rgba(var(--blackRGB),.6);color:var(--white);display:none;padding:4px 10px;font-size:.875rem;z-index:1;opacity:.9;position:relative;height:26px;margin-bottom:0}.trending-bar a{color:var(--white)}.trending-bar__header{color:var(--yellowLegacy);margin-bottom:0;padding-right:5px;white-space:nowrap;font-size:1rem;font-family:var(--fontNeusa);line-height:18px;letter-spacing:.055em;text-transform:uppercase}.trending-bar__list{display:flex;align-items:center;padding:0}.trending-bar__list li{margin-bottom:0}.trending-bar__link{margin-right:2px;padding:0 5px;font-weight:400;line-height:18px}.trending-list-wrap{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:flex-start}@media (min-width:768px){.trending-bar{display:block}}#trending_bar_ad{position:absolute;top:0;right:0}.auth-overlay__icon-button{display:flex;border:none;background:0 0;height:26px;font-size:1.625rem;padding:0;z-index:1}.auth-overlay__icon-button rt-icon{fill:var(--grayLight4)}.auth-overlay__icon-button--close{position:absolute;right:20px}.footer__content-mobile-block{display:block;color:var(--white);font-size:.875rem;padding:15px 15px 69px;text-align:center;font-family:var(--fontFranklinGothic)}.footer__content-mobile-block a{font-size:.875rem}.footer__links-list{padding:0;margin-left:-5px;margin-bottom:30px}.footer__links-list-item{margin-bottom:0;padding:2px 5px;font-size:1rem}.footer__links-list-item a{color:var(--white);fill:var(--white);line-height:1.375rem}.footer__links-list-item a#ot-sdk-btn.ot-sdk-show-settings{color:var(--white);border:initial;height:initial;white-space:initial;padding:2px 5px;font-size:1rem;line-height:initial;background-color:initial}.footer__links-list-item a#ot-sdk-btn.ot-sdk-show-settings.mobile{font-size:.875rem}.footer__ccpa-icon{display:inline-block;width:30px;margin:0 0 2px 0}.footer__newsletter-btn{display:flex;justify-content:center;align-items:center;width:175px;margin:10px auto;font-weight:500;color:var(--white)}.footer__copyright-legal{margin-bottom:0;font-size:1rem}@media (min-width:768px){.footer__content-mobile-block{display:none}.footer__content-group{padding:20px 0}.footer__copyright-legal{color:var(--gray);font-size:.875rem}}.trailers-and-videos-item:first-child{margin-left:15px}.trailers-and-videos-item a{color:var(--grayDark2);display:block}.trailers-and-videos-item__thumbnail-group{position:relative}.trailers-and-videos-item__thumbnail-image{width:100%}.trailers-and-videos-item__info{background-color:transparent;text-align:left}.trailers-and-videos-item__info h3{margin:.25em 0 .67em}.trailers-and-videos-item__info p{font-weight:400}@media (max-width:767px){.trailers-and-videos-item__thumbnail-image{min-height:178px}}@media (min-width:768px){.trailers-and-videos-item:first-child{margin-left:0}.trailers-and-videos-item__thumbnail-image{min-height:143px}}#editorial-spotlight{display:flex;margin-left:-15px;margin-right:-15px}#editorial-spotlight editorial-spotlight[skeleton=panel]{height:225px;width:100%}#editorial-spotlight editorial-spotlight button{display:none}#editorial-spotlight editorial-spotlight h2{margin-bottom:.25em;padding-left:0}#editorial-spotlight editorial-spotlight h2:before{content:none}#editorial-spotlight editorial-spotlight p{margin-bottom:.25em}@media (min-width:768px){#editorial-spotlight editorial-spotlight{height:310px}#editorial-spotlight editorial-spotlight[skeleton=panel]{height:310px;width:100%}#editorial-spotlight editorial-spotlight button{display:flex;width:40px;height:40px;border-radius:50%;border:none;box-shadow:1px 4px 10px 0 rgba(42,44,50,.16);background-color:var(--white);font-size:.813rem}#editorial-spotlight editorial-spotlight button rt-icon{fill:var(--gray)}}.trailers-and-videos{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;margin-bottom:2rem}.trailers-and-videos__header{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;width:100%}.trailers-and-videos__header a{font-size:.875rem;margin-bottom:1.25rem}.trailers-and-videos__body{width:100%;margin-left:-15px}.trailers-and-videos__body>div{flex-basis:100%}@media (min-width:768px){.trailers-and-videos{margin-bottom:4rem}.trailers-and-videos__body{margin-left:0}}.home-body{margin-bottom:0}.home__thumbnail{border-radius:4px}.module-1x4{display:flex;flex-direction:row;overflow-x:scroll}.module-1x4__left{width:auto;margin:0}.module-1x4__right{display:flex;flex-direction:row}.module-1x4__item{display:flex;flex-direction:column;width:320px;margin:0 10px 0 0;padding:0}@media (min-width:768px){.module-1x4{flex-direction:row;align-items:flex-start;overflow:auto}.module-1x4__left{width:auto;margin:0}.module-1x4__left>li{display:flex;width:470px}.module-1x4__left .module-1x4__item:first-child{margin:0 0 12px 0}.module-1x4__right{width:60%;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-evenly}.module-1x4__right .module-1x4__item{width:49%}.module-1x4__item{display:flex;flex-wrap:wrap;width:100%;margin:0 0 12px 0;padding:5px}}video-player-overlay button.transparent{margin:15px}video-player-overlay rt-icon[icon=close]{fill:var(--white)}video-player-overlay .cta-btn.header-cta{display:none;margin:16px}video-player-overlay .cta-btn.footer-cta{width:calc(100% - 68px);text-align:center}@media (min-width:768px){video-player-overlay rt-icon[icon=close]{display:none;visibility:hidden}video-player-overlay .cta-btn.header-cta{display:inline-block}}</style>\n<!-- /END: critical-->\n\n\n        \n    \n            <!-- @todo TOMATO-10097 - clean up redesignGlobalStyles-->\n            \n                <link rel=\"preload\" href=\"/assets/pizza-pie/stylesheets/bundles/layouts/default_DEPRECATED.5846794e3a1.css\" as=\"style\" onload=\"this.onload=null;this.rel='stylesheet'\">\n            \n        \n\n    <link rel=\"preload\" href=\"/assets/pizza-pie/stylesheets/bundles/pages/home.0b79c7e1bcf.css\" as=\"style\" onload=\"this.onload=null;this.rel='stylesheet'\">\n\n\n        <script>\n        !function(t){\"use strict\";t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement(\"link\").relList.supports(\"preload\")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){var e=t.media||\"all\";function a(){t.media=e}t.addEventListener?t.addEventListener(\"load\",a):t.attachEvent&&t.attachEvent(\"onload\",a),setTimeout(function(){t.rel=\"stylesheet\",t.media=\"only x\"}),setTimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName(\"link\"),n=0;n<a.length;n++){var o=a[n];\"preload\"!==o.rel||\"style\"!==o.getAttribute(\"as\")||o.getAttribute(\"data-loadcss\")||(o.setAttribute(\"data-loadcss\",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener(\"load\",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent(\"onload\",function(){e.poly(),t.clearInterval(a)})}\"undefined\"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS}(\"undefined\"!=typeof global?global:this);\n        </script>\n\n        <script>\n            window.RottenTomatoes = {};\n            window.RTLocals = {};\n            window.nunjucksPrecompiled = {};\n            window.__RT__ = {};\n        </script>\n\n        \n            \n            <script src=\"https://cdn.jwplayer.com/libraries/U8MHzHHR.js\"></script>\n            <script src=\"https://sb.scorecardresearch.com/c2/plugins/streamingtag_plugin_jwplayer.js\"></script>\n        \n\n        \n    \n        \n        <style id=\"chartbeat-flicker-control-style\" type=\"text/css\"></style>\n\n        <script defer src=\"/assets/pizza-pie/javascripts/bundles/vendor/chartbeat-headline.45c418278f0.js\"></script>\n        \n    \n\n    </head>\n    \n    <body class=\"body no-touch js-mptd-layout\">\n        <user-activity-manager></user-activity-manager>\n        <ad-unit-manager></ad-unit-manager>\n\n        <auth-initiate-manager data-WatchlistButtonManager=\"authInitiateManager:createAccount\"></auth-initiate-manager>\n<auth-profile-manager data-AuthInitiateManager=\"authProfileManager\"></auth-profile-manager>\n<overlay-base\n    class=\"\"\n    data-AuthInitiateManager=\"overlayBase:close\"\n    data-PagePollsIndexManager=\"authOverlay:close\"\n    hidden\n>\n    <overlay-flows data-AuthInitiateManager=\"overlayFlows\" slot=\"content\">\n        <button slot=\"close\" class=\"auth-overlay__icon-button auth-overlay__icon-button--close\" aria-label=\"Close\" data-qa=\"close-overlay-btn\">\n            <rt-icon image icon=\"close\"></rt-icon>\n        </button>\n    </overlay-flows>\n</overlay-base>\n\n<notification-alert data-AuthInitiateManager=\"authSuccess\" class=\"\" animate hidden>\n    <rt-icon icon=\"check-circled\"></rt-icon>\n    <span>Signed in</span>\n</notification-alert>\n\n<div id=\"auth-templates\" data-AuthInitiateManager=\"authTemplates\">\n    <template slot=\"screens\" id=\"cognito-loading\">\n    <div>\n        <loading-spinner id=\"cognito-auth-loading-spinner\"></loading-spinner>\n        <style>\n            #cognito-auth-loading-spinner {\n                font-size: 2rem;\n                transform: translate(calc(100% - 1em), 250px);\n                width: 50%;\n            }\n        </style>\n    </div>\n</template>\n\n    <template slot=\"screens\" id=\"cognito-signup-form\">\n<auth-signup-screen data-qa=\"auth-signup-screen\">\n    <h2 slot=\"header\" class=\"cognito-signup-form__header\" data-qa=\"auth-signup-screen-title\">Log in or sign up for Rotten Tomatoes</h2>\n    <rt-button slot=\"signup-option\" theme=\"light\" class=\"cognito-signup-form__option\" value=\"google\" data-qa=\"auth-signup-screen-google-btn\">\n        <div class=\"cognito-signup-form__option__container\">\n            <span class=\"cognito-signup-form__option__icon cognito-signup-form__option__icon--google\"></span>\n            <span class=\"cognito-signup-form__option__text\">Continue with Google</span>\n        </div>\n    </rt-button>\n    <rt-button slot=\"signup-option\" theme=\"light\" class=\"cognito-signup-form__option\" value=\"email\" data-qa=\"auth-signup-screen-email-btn\">\n        <div class=\"cognito-signup-form__option__container\">\n            <rt-icon image icon=\"mail\" class=\"cognito-signup-form__option__icon cognito-signup-form__option__icon--mail\"></rt-icon>\n            <span class=\"cognito-signup-form__option__text\">Continue with Email</span>\n        </div>\n    </rt-button>\n        \n    <input-label slot=\"email\">\n        <label slot=\"label\" for=\"cognito-email-input\" class=\"auth-form__control__label\">Email</label>\n        <input slot=\"input\" id=\"cognito-email-input\" type=\"email\" data-qa=\"auth-signup-screen-email\">\n    </input-label>\n\n    <div slot=\"info\">\n        <div class=\"no-password-container\">\n            <rt-badge>New</rt-badge>\n            <span class=\"no-password\">Where is the password field?</span>\n            <tool-tip\n                class=\"cognito-signup-form__tooltip\"\n                title=\"Where is the password field?\"\n                description=\"Rotten Tomatoes now offers passwordless authentication for all user accounts, making it easier for you to access your information. Simply enter the email address you previously used and hit continue to complete your log-in.\"\n                slot=\"tooltip\"\n                nomobilefooter\n            >\n                <button slot=\"tool-tip-btn\" class=\"button--link\">\n                    <rt-icon icon=\"question-circled\" image></rt-icon>\n                </button>\n            </tool-tip>\n        </div>\n    </div>\n    \n    <button slot=\"continue\" class=\"auth-form__button\" data-qa=\"auth-signup-screen-continue-btn\">Continue</button>\n\n    <p slot=\"help\" class=\"cognito-signup-form-help\">\n        <a href=\"/reset-client\" data-qa=\"auth-signup-screen-reset-client-link\">Trouble logging in?</a>\n    </p>\n    \n    <p slot=\"terms-and-policies\" class=\"cognito-signup-form__terms-and-policies\">\n        By continuing, you agree to the <a href=\"https://www.nbcuniversal.com/fandango-privacy-policy\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-signup-screen-privacy-policy-link\">Privacy Policy</a> and \n        the <a href=\"/policies/terms-and-policies\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-signup-screen-terms-policies-link\">Terms and Policies</a>, and to receive email from Rotten Tomatoes.\n    </p>\n</auth-signup-screen>\n</template>\n    <template slot=\"screens\" id=\"cognito-name-form-us\">\n  <auth-name-screen data-qa=\"auth-name-screen\">\n    <input-label slot=\"firstName\" data-qa=\"auth-name-screen-firstname-input\">\n      <label slot=\"label\" for=\"cognito-first-name-input\" class=\"auth-form__control__label\">First name (Required)</label>\n      <input slot=\"input\" id=\"cognito-first-name-input\" data-qa=\"auth-name-screen-first-name\">\n    </input-label>\n    <input-label slot=\"lastName\" data-qa=\"auth-name-screen-lastname-input\">\n      <label slot=\"label\" for=\"cognito-last-name-input\" class=\"auth-form__control__label\">Last name (Required)</label>\n      <input slot=\"input\" id=\"cognito-last-name-input\" data-qa=\"auth-name-screen-last-name\">\n    </input-label>\n    <rt-button slot=\"createAccount\" class=\"auth-form__button\">Create my account</rt-button>\n    <p slot=\"termsAndPolicies\" class=\"cognito-signup-form__terms-and-policies\">\n      By creating an account, you agree to the\n      <a href=\"https://www.nbcuniversal.com/fandango-privacy-policy\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-privacy-policy-link\"> Privacy Policy </a>\n      and the<br>\n      <a href=\"/policies/terms-and-policies\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-terms-policies-link\"> Terms and Policies</a>,\n      and to receive email from Rotten Tomatoes and to receive email from the\n      <a href=\"https://www.fandango.com/about-us\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-fandango-media-link\"> Fandango Media Brands</a>.\n    </p>\n  </auth-name-screen>\n</template>\n\n    <template slot=\"screens\" id=\"cognito-name-form-foreign\">\n  <auth-name-screen data-qa=\"auth-name-screen\">\n    <input-label slot=\"firstName\" data-qa=\"auth-name-screen-firstname-input\">\n      <label slot=\"label\" for=\"cognito-first-name-input\" class=\"auth-form__control__label\">First name (Required)</label>\n      <input slot=\"input\" id=\"cognito-first-name-input\" data-qa=\"auth-name-screen-first-name\">\n    </input-label>\n    <input-label slot=\"lastName\" data-qa=\"auth-name-screen-lastname-input\">\n      <label slot=\"label\" for=\"cognito-last-name-input\" class=\"auth-form__control__label\">Last name (Required)</label>\n      <input slot=\"input\" id=\"cognito-last-name-input\" data-qa=\"auth-name-screen-last-name\">\n    </input-label>\n    <rt-button slot=\"createAccount\" class=\"auth-form__button\">Create my account</rt-button>\n    <p slot=\"termsAndPolicies\" class=\"cognito-signup-form__terms-and-policies\">\n      By creating an account, you agree to the\n      <a href=\"https://www.nbcuniversal.com/fandango-privacy-policy\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-privacy-policy-link\"> Privacy Policy </a>\n      and the<br>\n      <a href=\"/policies/terms-and-policies\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-terms-policies-link\"> Terms and Policies</a>\n      , and to receive email from Rotten Tomatoes.\n    </p>\n  </auth-name-screen>\n</template>\n\n    <template slot=\"screens\" id=\"cognito-checkemail\">\n    <auth-checkemail-screen data-qa=\"auth-check-email-screen\">\n        <span slot=\"email-icon\" class=\"cognito-check-email__icon--email\"></span>\n        <span slot=\"mobile-icon\" class=\"cognito-check-email__icon--mobile\"></span>\n        <button slot=\"learn-more\" class=\"text-button\" tabindex=\"0\" data-qa=\"auth-check-email-screen-learn-more-link\">LEARN MORE</button>\n        <a slot=\"help\" tabindex=\"0\" target=\"_blank\" href=\"/help_desk\" data-qa=\"auth-check-email-screen-help-link\">HELP</a>\n    </auth-checkemail-screen>\n</template>\n\n    <template slot=\"screens\" id=\"cognito-learn-more\">\n  <auth-learn-more-screen data-qa=\"auth-learn-more-screen\">\n    <button slot=\"back\" class=\"auth-overlay__icon-button auth-overlay__icon-button--back\">\n      <rt-icon icon=\"left-arrow-stem\" image></rt-icon>\n    </button>\n  </auth-learn-more-screen>\n</template>\n    <template slot=\"screens\" id=\"cognito-error\">\n    <auth-error-screen data-qa=\"auth-error-screen\">\n        <h2 slot=\"heading\" class=\"cognito-error__heading\" data-qa=\"auth-error-screen-title\">\n            <rt-icon image icon=\"exclamation-circled\" class=\"cognito-error__icon--exclamation-circled\"></rt-icon>\n            <span class=\"js-cognito-error-heading-txt\">Email not verified</span>\n        </h2>\n        <p slot=\"error-message\" class=\"js-cognito-error-message cognito-error__error-message\" data-qa=\"auth-error-screen-message\">\n            <!-- error message is set from auth-error-screen WC-->\n        </p>\n        <p slot=\"error-code\" class=\"js-cognito-error-code cognito-error__error-message\" data-qa=\"auth-error-screen-code\">\n            <!-- error code is set from auth-error-screen WC-->\n        </p>\n        <rt-button slot=\"tryAgainBtn\" class=\"cognito-error__try-again-btn\"><span class=\"cognito-error__btn-text\" data-qa=\"auth-error-screen-try-again-btn\">TRY AGAIN</span></rt-button>\n        <rt-button slot=\"cancelBtn\" class=\"cognito-error__cancel-btn\" theme=\"light\"><span class=\"cognito-error__btn-text\" data-qa=\"auth-error-screen-cancel-btn\">CANCEL</span></rt-button>\n    </auth-error-screen>\n</template>\n\n    <template slot=\"screens\" id=\"cognito-opt-in-us\">\n  <auth-optin-screen data-qa=\"auth-opt-in-screen\">\n    <div slot=\"newsletterText\">\n      <h2 class=\"cognito-optin-form__header unset\">Let's keep in touch!</h2>\n    </div>\n    <img slot=\"image\" class=\"image\" src=\"https://images.fandango.com/cms/assets/97c33f00-313f-11ee-9aaf-6762c75465cf--newsletter.png\" alt=\"Rotten Tomatoes Newsletter\">>\n    <h2 slot=\"subTitle\" class=\"subTitle unset\">Sign up for the Rotten Tomatoes newsletter to get weekly updates on:</h2>\n    <ul slot=\"options\">\n      <li class=\"icon-item\">Upcoming Movies and TV shows</li>\n      <li class=\"icon-item\">Trivia & Rotten Tomatoes Podcast</li>\n      <li class=\"icon-item\">Media News + More</li>\n    </ul>\n    <rt-button slot=\"optInButton\" data-qa=\"auth-opt-in-screen-opt-in-btn\">\n      Sign me up\n    </rt-button>\n    <rt-button slot=\"optOutButton\" class=\"button--outline\" data-qa=\"auth-opt-in-screen-opt-out-btn\">\n      No thanks\n    </rt-button>\n    <p slot=\"footNote\">\n      By clicking \"Sign Me Up,\" you are agreeing to receive occasional emails and communications from Fandango Media (Fandango, Vudu, and Rotten Tomatoes) and consenting to Fandango's \n      <a href=\"https://www.nbcuniversal.com/fandango-privacy-policy\" class=\"optin-link\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-privacy-policy-link\">Privacy Policy</a>\n      and \n      <a href=\"/policies/terms-and-policies\" class=\"optin-link\" target=\"_blank\" rel=\"noopener\" data-qa=\"auth-name-screen-privacy-policy-link\">Terms and Policies</a>.\n      Please allow 10 business days for your account to reflect your preferences.\n    </p>\n  </auth-optin-screen>\n</template>\n    <template slot=\"screens\" id=\"cognito-opt-in-foreign\">\n  <auth-optin-screen data-qa=\"auth-opt-in-screen\">\n    <div slot=\"newsletterText\">\n      <h2 class=\"cognito-optin-form__header unset\">Let's keep in touch!</h2>\n    </div>\n    <img slot=\"image\" class=\"image\" src=\"https://images.fandango.com/cms/assets/97c33f00-313f-11ee-9aaf-6762c75465cf--newsletter.png\" alt=\"Rotten Tomatoes Newsletter\">>\n    <h2 slot=\"subTitle\" class=\"subTitle unset\">Sign up for the Rotten Tomatoes newsletter to get weekly updates on:</h2>\n    <ul slot=\"options\">\n      <li class=\"icon-item\">Upcoming Movies and TV shows</li>\n      <li class=\"icon-item\">Trivia & Rotten Tomatoes Podcast</li>\n      <li class=\"icon-item\">Media News + More</li>\n    </ul>\n    <rt-button slot=\"optInButton\" data-qa=\"auth-opt-in-screen-opt-in-btn\">\n      Sign me up\n    </rt-button>\n    <rt-button slot=\"optOutButton\" class=\"button--outline\" data-qa=\"auth-opt-in-screen-opt-out-btn\">\n      No thanks\n    </rt-button>\n  </auth-optin-screen>\n</template>\n    <template slot=\"screens\" id=\"cognito-opt-in-success\">\n    <auth-verify-screen>\n        <rt-icon icon=\"check-circled\" slot=\"icon\"></rt-icon>\n        <p class=\"h3\" slot=\"status\">OK, got it!</p>\n    </auth-verify-screen>\n</template>\n\n</div>\n\n\n        <div id=\"emptyPlaceholder\"></div> \n\n        \n            \n            <script ASYNC src=\"//assets.adobedtm.com/launch-EN549327edc13e414a9beb5d61bfd9aac6.min.js\"></script>\n            \n        \n\n        <div class=\"container rt-layout__body\">\n            <div id=\"header_and_leaderboard\">\n                <div id=\"top_leaderboard_wrapper\" class=\"leaderboard_wrapper homepage_leaderboard\">\n                    <ad-unit hidden unitdisplay=\"desktop\" unittype=\"topbanner\" adjustheight data-AdUnitManager=\"adUnit:error\">\n                        <div slot=\"adInject\"></div>\n                    </ad-unit>\n\n                    <ad-unit hidden unitdisplay=\"mobile\" unittype=\"mbanner\" data-AdUnitManager=\"adUnit:error\">\n                        <div slot=\"adInject\"></div>\n                    </ad-unit>\n                </div>\n            </div>\n\n            \n\n  <rt-header-manager></rt-header-manager>\n\n  <rt-header\n    aria-label=\"navigation bar\"\n    class=\"navbar\"\n    data-qa=\"header-nav-bar\"\n    id=\"header-main\"\n    skeleton=\"panel\"\n    \n  >\n  <a slot=\"skip-link\" href=\"#main-page-content\" class=\"skip-link\">Skip to Main Content</a>\n\n  <a id=\"navbar\" slot=\"logo\" href=\"/\" class=\"logo-wrap\">\n    <img\n      alt=\"Rotten Tomatoes\"\n      data-qa=\"header-logo\"\n      src=\"/assets/pizza-pie/images/rtlogo.9b892cff3fd.png\"\n      fetchpriority=\"high\"\n    />\n\n    <div class=\"hide\">\n      <ad-unit hidden unitdisplay=\"desktop,mobile\" unittype=\"logorepeat\" unittargeting=\"ploc=rtlogo;\">\n        <div slot=\"adInject\"></div>\n      </ad-unit>\n    </div>\n  </a>\n\n  <search-algolia slot=\"desktop-search\" skeleton=\"transparent\">\n    <search-algolia-controls slot=\"search-controls\">\n      <input\n        class=\"search-text\"\n        aria-label=\"Search\"\n        data-qa=\"search-input\"\n        placeholder=\"Search movies, TV, actors, more..\"\n        slot=\"search-input\"\n        type=\"text\"\n      />\n      <button\n        class=\"search-clear\"\n        data-qa=\"search-clear\"\n        slot=\"search-clear\"\n      >\n        <rt-icon icon=\"close\" image></rt-icon>\n      </button>\n      <a\n        class=\"search-submit\"\n        aria-label=\"Submit search\"\n        data-qa=\"search-submit\"\n        href=\"/search\"\n        slot=\"search-submit\"\n      >\n        <rt-icon icon=\"search\" image></rt-icon>\n      </a>\n      <button\n        class=\"search-cancel\"\n        data-qa=\"search-cancel\"\n        slot=\"search-cancel\"\n      >\n        Cancel\n      </button>\n    </search-algolia-controls>\n    <search-algolia-results slot=\"search-results\" data-qa=\"search-results-overlay\">\n      <search-algolia-results-category slot=\"content\" data-qa=\"search-results-category\">\n        <h2 slot=\"title\" data-qa=\"search-category-header\" class=\"h2\">Movies / TV</h2>\n        <ul slot=\"results\"></ul>\n      </search-algolia-results-category>\n      <search-algolia-results-category slot=\"celebrity\" data-qa=\"search-results-category\">\n        <h2 slot=\"title\" data-qa=\"search-category-header\" class=\"h2\">Celebrity</h2>\n        <ul slot=\"results\"></ul>\n      </search-algolia-results-category>\n      <search-algolia-results-category slot=\"none\">\n        <h2 slot=\"title\" data-qa=\"search-no-results\" class=\"h2\">No Results Found</h2>\n      </search-algolia-results-category>\n      <a slot=\"view-all\" href=\"/\" data-qa=\"search-view-all\">View All</a>\n    </search-algolia-results>\n  </search-algolia>\n\n  <mobile-search-algolia slot=\"mobile-search\" logoselector=\"#navbar .logo-wrap\" navselector=\"#navbar\" data-qa=\"mobile-search-algolia\"></mobile-search-algolia>\n\n  <ul slot=\"nav-links\">\n    <li><a href=\"/about#whatisthetomatometer\" data-qa=\"header:link-whats-tmeter\">What's the Tomatometer&reg;?</a></li>\n    <li><a href=\"/critics\" data-qa=\"header:link-critics-home\">Critics</a></li>\n    <li data-RtHeaderManager=\"loginLink\">\n      <ul>\n        <li>\n          <button\n            id=\"masthead-show-login-btn\"\n            class=\"js-cognito-signin button--link\"\n            data-AuthInitiateManager=\"btnSignIn:click\"\n            data-qa=\"header:login-btn\"\n        >Login/signup</button>\n        </li>\n      </ul>\n    </li>\n    <li class=\"hide\" data-RtHeaderManager=\"userItem:keydown,keyup,mouseenter\" data-qa=\"header:user\">\n      <a class=\"masthead-user-link\" data-RtHeaderManager=\"navUserlink:focus\" rel=\"nofollow\" data-qa=\"user-profile-link\">\n        <img data-RtHeaderManager=\"navUserImg\" data-qa=\"user-profile-thumb\">\n        <p data-RtHeaderManager=\"navUserFirstName\" data-qa=\"user-profile-name\"></p>\n        <rt-icon icon=\"down-dir\" image></rt-icon>\n      </a>\n      <rt-header-user-info\n        class=\"hide\"\n        data-RtHeaderManager=\"userInfo:focusout,mouseleave\"\n        data-UserActivityManager=\"userInfo\"\n      >\n        <a \n          data-qa=\"user-stats-profile-pic\"\n          href=\"\"\n          rel=\"nofollow\" \n          slot=\"imageExpanded\"\n          tabindex=\"-1\"\n        >\n          <img src=\"\" width=\"40\" alt=\"\">\n        </a>\n        <a slot=\"fullName\" rel=\"nofollow\" href=\"\" class=\"username\" data-qa=\"user-stats-name\"></a>\n        <a slot=\"wts\" rel=\"nofollow\" href=\"\" class=\"wts-count-block\" data-qa=\"user-stats-wts\">\n          <rt-icon icon=\"plus\" data-qa=\"user-stats-ratings-count\"></rt-icon>\n          <span class=\"count\" data-qa=\"user-stats-wts-count\"></span>\n          &nbsp;Wants to See\n        </a>\n        <a slot=\"rating\" rel=\"nofollow\" href=\"\" class=\"rating-count-block\" data-qa=\"user-stats-ratings\">\n          <rt-icon icon=\"star\" data-qa=\"user-stats-ratings-count\"></rt-icon>\n          <span class=\"count\"></span>\n          &nbsp;Ratings\n        </a>\n\n        <a slot=\"profileLink\" rel=\"nofollow\" class=\"dropdown-link\" href=\"\" data-qa=\"user-stats-profile-link\">Profile</a>\n        <a slot=\"accountLink\" rel=\"nofollow\" class=\"dropdown-link\" href=\"/user/account\" data-qa=\"user-stats-account-link\">Account</a>\n        <a slot=\"logoutLink\" class=\"dropdown-link\" data-RtHeaderManager=\"logoutLink:click\" href=\"#logout\" data-qa=\"user-stats-logout-link\">Log Out</a>\n      </rt-header-user-info>\n    </li>\n  </ul>\n\n  <rt-header-nav slot=\"nav-dropdowns\">\n    <rt-header-nav-item slot=\"movies\" data-qa=\"masthead:movies-dvds\">\n      <a class=\"unset\" slot=\"link\" href=\"/browse/movies_in_theaters\" data-qa=\"masthead:movies-dvds-link\">Movies</a>\n      <rt-header-nav-item-dropdown aria-expanded=\"false\" slot=\"dropdown\">\n        <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-movies-in-theaters\">\n          <p slot=\"title\" class=\"h4\" data-qa=\"movies-in-theaters-main-link\"><a class=\"unset\" href=\"/browse/movies_in_theaters\">Movies in theaters</a></p>\n          <ul slot=\"links\">\n            <li data-qa=\"in-theaters-item\">\n              <a href=\"/browse/movies_in_theaters/sort:newest\" data-qa=\"opening-this-week-link\">Opening this week</a>\n            </li>\n            <li data-qa=\"in-theaters-item\">\n              <a href=\"/browse/movies_in_theaters/sort:top_box_office\" data-qa=\"top-box-office-link\">Top box office</a>\n            </li>\n            <li data-qa=\"in-theaters-item\">\n              <a href=\"/browse/movies_coming_soon/\" data-qa=\"coming-soon-link\">Coming soon to theaters</a>\n            </li>\n            <li data-qa=\"in-theaters-item\">\n              <a href=\"/browse/movies_in_theaters/critics:certified_fresh~sort:popular\" data-qa=\"certified-fresh-link\">Certified fresh movies</a>\n            </li>\n          </ul>\n        </rt-header-nav-item-dropdown-list>\n        <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-on-dvd-streaming\">\n          <p slot=\"title\" class=\"h4\" data-qa=\"dvd-streaming-main-link\"><a class=\"unset\" href=\"/browse/movies_at_home\">Movies at home</a></p>\n          <ul slot=\"links\">\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/affiliates:peacock\" data-qa=\"peacock-link\">Peacock</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/affiliates:vudu\" data-qa=\"vudu-link\">Vudu</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/affiliates:netflix\" data-qa=\"netflix-link\">Netflix streaming</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/affiliates:apple_tv_us,apple_tv_plus\" data-qa=\"apple-tv-link\">Apple TV</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/affiliates:amazon_prime\" data-qa=\"amazon-link\">Amazon prime</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/sort:popular\" data-qa=\"most-popular-link\">Most popular streaming movies</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home/critics:certified_fresh\" data-qa=\"certified-fresh-link\">Certified fresh movies</a>\n            </li>\n            <li data-qa=\"dvd-streaming-item\">\n              <a href=\"/browse/movies_at_home\" data-qa=\"browse-all-link\">Browse all</a>\n            </li>\n          </ul>\n        </rt-header-nav-item-dropdown-list>\n        <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-movies-more\">\n          <p slot=\"title\" class=\"h4\">More</p>\n          <ul slot=\"links\">\n            <li data-qa=\"what-to-watch-item\">\n                <a href=\"https://editorial.rottentomatoes.com/what-to-watch/ \" class=\"what-to-watch\" data-qa=\"what-to-watch-link\">What to Watch<rt-badge>New</rt-badge></a>\n            </li>\n            <li data-qa=\"top-movies-item\">\n              <a href=\"/browse/movies_at_home/sort:popular\" data-qa=\"top-movies-link\">Top movies</a>\n            </li>\n            <li data-qa=\"trailers-item\">\n              <a href=\"/trailers\" data-qa=\"trailers-link\">Trailers</a>\n            </li>\n          </ul>\n        </rt-header-nav-item-dropdown-list>\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" cfp>\n            <p slot=\"title\" class=\"h4\">Certified fresh picks</p>\n            <ul slot=\"links\" class=\"cfp-wrap\" data-qa=\"header-certified-fresh-picks\" data-curation=\"rt-nav-list-cf-picks\">\n              \n                <li data-qa=\"cert-fresh-item\">\n                  \n                  <a class=\"cfp-tile\" href=\"/m/dune_part_two\" data-qa=\"cert-fresh-link\">\n    <tile-dynamic data-qa=\"tile\">\n        <rt-img\n            alt=\"Dune: Part Two poster image\"\n            slot=\"image\"\n            src=\"https://resizing.flixster.com/vxpGJEnkzJSlcWEm4jXg7uSSK1Y=/206x305/v2/https://resizing.flixster.com/LayhPI3IgSXjXMPj-JRqErf7Yb0=/fit-in/180x240/v2/https://resizing.flixster.com/PgHhmCKS3hR6GUsVNlC-vZ9d90I=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZhOTA0OTIzLTEwNDctNDhkNS1iNTc3LTY3MjBmNDc5OGU1Mi5qcGc=\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\" data-track=\"scores\">\n            <score-icon-critic-deprecated\n                alignment=\"left\"\n                percentage=\"98\"\n                state=\"certified_fresh\"\n            ></score-icon-critic-deprecated>\n            <span class=\"p--small\">Dune: Part Two</span>\n            <span class=\"sr-only\">Link to Dune: Part Two</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n              \n                <li data-qa=\"cert-fresh-item\">\n                  \n                  <a class=\"cfp-tile\" href=\"/m/fitting_in_2023\" data-qa=\"cert-fresh-link\">\n    <tile-dynamic data-qa=\"tile\">\n        <rt-img\n            alt=\"Fitting In poster image\"\n            slot=\"image\"\n            src=\"https://resizing.flixster.com/Rxil_zdW8QOLul_u7ZTSoCQ1pQ0=/206x305/v2/https://resizing.flixster.com/kXvEuEdlU2FbQWsIy99EjUDjWxo=/fit-in/180x240/v2/https://resizing.flixster.com/HgJYJqGbkyqb17jdSAfrj9E2_7w=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVlZjA0ZmViLTY0NTQtNDE3NC1iYzU5LTE5Y2Q5YjAzMDAzNy5qcGc=\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\" data-track=\"scores\">\n            <score-icon-critic-deprecated\n                alignment=\"left\"\n                percentage=\"95\"\n                state=\"certified_fresh\"\n            ></score-icon-critic-deprecated>\n            <span class=\"p--small\">Fitting In</span>\n            <span class=\"sr-only\">Link to Fitting In</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n              \n                <li data-qa=\"cert-fresh-item\">\n                  \n                  <a class=\"cfp-tile\" href=\"/m/orion_and_the_dark\" data-qa=\"cert-fresh-link\">\n    <tile-dynamic data-qa=\"tile\">\n        <rt-img\n            alt=\"Orion and the Dark poster image\"\n            slot=\"image\"\n            src=\"https://resizing.flixster.com/AkzPYg9nTVaL6lVuHxTxK9WfQxg=/206x305/v2/https://resizing.flixster.com/Ne0i8eER4JBoWRB7pW2k42r-khg=/fit-in/180x240/v2/https://resizing.flixster.com/3g9tZnA26NUFtH2uaUW1V1LKPPU=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVkMTEzYTBiLTQ3NTYtNDkwMy1iOGQ3LTZmMTBkOWRlOWRlOC5qcGc=\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\" data-track=\"scores\">\n            <score-icon-critic-deprecated\n                alignment=\"left\"\n                percentage=\"90\"\n                state=\"certified_fresh\"\n            ></score-icon-critic-deprecated>\n            <span class=\"p--small\">Orion and the Dark</span>\n            <span class=\"sr-only\">Link to Orion and the Dark</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n            </ul>\n          </rt-header-nav-item-dropdown-list>\n        \n      </rt-header-nav-item-dropdown>\n    </rt-header-nav-item>\n\n    <rt-header-nav-item slot=\"tv\" data-qa=\"masthead:tv\">\n      <a class=\"unset\" slot=\"link\" href=\"/browse/tv_series_browse/sort:popular\" data-qa=\"masthead:tv-link\">Tv shows</a>\n      <rt-header-nav-item-dropdown aria-expanded=\"false\" slot=\"dropdown\">\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-tv-list1\">\n            <p slot=\"title\" class=\"h4\" data-curation=\"rt-hp-text-list-new-tv-this-week\">\n              New TV Tonight\n            </p>\n            <ul slot=\"links\" class=\"score-list-wrap\">\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/the_second_best_hospital_in_the_galaxy/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"83\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            The Second Best Hospital in The Galaxy: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/constellation/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"73\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Constellation: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/star_wars_the_bad_batch/s03\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"82\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Star Wars: The Bad Batch: Season 3\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/avatar_the_last_airbender_2024/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"60\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Avatar: The Last Airbender: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/can_i_tell_you_a_secret/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"\"\n        state=\"\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Can I Tell You A Secret?: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/last_week_tonight_with_john_oliver/s11\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"\"\n        state=\"\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Last Week Tonight With John Oliver: Season 11\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/james_brown_say_it_loud/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"\"\n        state=\"\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            James Brown: Say It Loud: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n            </ul>\n            <a\n              class=\"a--short\"\n              data-qa=\"tv-list1-view-all-link\"\n              href=\"/browse/tv_series_browse/sort:newest\"\n              slot=\"view-all-link\"\n            >\n                View All\n            </a>\n          </rt-header-nav-item-dropdown-list>\n        \n\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-tv-list2\"]>\n            <p slot=\"title\" class=\"h4\" data-curation=\"rt-hp-text-list-most-popular-tv-on-rt\">\n              Most Popular TV on RT\n            </p>\n            <ul slot=\"links\" class=\"score-list-wrap\">\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/shogun_2024/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"100\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Shōgun: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/constellation/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"73\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Constellation: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/avatar_the_last_airbender_2024/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"60\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Avatar: The Last Airbender: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/true_detective/s04\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"92\"\n        state=\"certified_fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            True Detective: Season 4\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/one_day_2024/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"93\"\n        state=\"certified_fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            One Day: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/house_of_ninjas/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"100\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            House of Ninjas: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/a_killer_paradox/s01\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"100\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            A Killer Paradox: Season 1\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/resident_alien/s03\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"\"\n        state=\"\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Resident Alien: Season 3\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/the_tourist/s02\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"94\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            The Tourist: Season 2\n        \n    </span>\n</a>\n                </li>\n              \n                <li data-qa=\"list-item\">\n                  <a class=\"score-list-item\" href=\"/tv/halo/s02\" data-qa=\"list-item-link\">\n    <score-icon-critic-deprecated\n        alignment=\"left\"\n        percentage=\"94\"\n        state=\"fresh\"\n    ></score-icon-critic-deprecated>\n    <span>\n        \n            Halo: Season 2\n        \n    </span>\n</a>\n                </li>\n              \n            </ul>\n            <a\n              class=\"a--short\"\n              data-qa=\"tv-list2-view-all-link\"\n              href=\"/browse/tv_series_browse/sort:popular?\"\n              slot=\"view-all-link\"\n            >\n                View All\n            </a>\n          </rt-header-nav-item-dropdown-list>\n        \n\n        <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-tv-more\">\n          <p slot=\"title\" class=\"h4\">More</p>\n          <ul slot=\"links\">\n            <li data-qa=\"what-to-watch-item-tv\">\n              <a href=\"https://editorial.rottentomatoes.com/rt-hub/what-to-watch/\" class=\"what-to-watch\" data-qa=\"what-to-watch-link-tv\">\n                What to Watch<rt-badge>New</rt-badge>\n              </a>\n            </li>\n            <li data-qa=\"tv-popular-item\">\n              <a href=\"/browse/tv_series_browse/sort:popular\" data-qa=\"tv-popular-link\">\n                <span>Best TV Shows</span>\n              </a>\n            </li>\n            <li>\n              <a href=\"/browse/tv_series_browse/sort:popular\">\n                <span>Most Popular TV</span>\n              </a>\n            </li>\n            <li data-qa=\"tv-streaming-item\">\n              <a href=\"https://editorial.rottentomatoes.com/rt-hub/tv-news-2023\" data-qa=\"tv-streaming-link\">\n                <span>TV & Streaming News</span>\n              </a>\n            </li>\n            <li>\n              <a href=\"/browse/tv_series_browse/affiliates:peacock\">\n                <span>Peacock</span>\n              </a>\n            </li>\n            <li>\n              <a href=\"/browse/tv_series_browse/affiliates:vudu\">\n                <span>Vudu</span>\n              </a>\n            </li>\n            <li>\n              <a href=\"/browse/tv_series_browse/affiliates:netflix\">\n                <span>Netflix</span>\n              </a>\n            </li>\n            <li>\n              <a href=\"/browse/tv_series_browse/affiliates:amazon_prime\">\n                <span>Prime Video</span>\n              </a>\n            </li>\n            <li>\n              <a href=\"/browse/tv_series_browse/affiliates:apple_tv_us,apple_tv_plus\">\n                <span>Apple TV</span>\n              </a>\n            </li>\n          </ul>\n        </rt-header-nav-item-dropdown-list>\n\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" cfp data-qa=\"header-certified-fresh-pick\">\n            <p slot=\"title\" class=\"h4\">\n              Certified fresh pick\n            </p>\n            <ul slot=\"links\" class=\"cfp-wrap\" data-curation=\"rt-nav-list-cf-picks\">\n              <li>\n                \n                <a class=\"cfp-tile\" href=\"/tv/curb_your_enthusiasm/s12\" data-qa=\"cert-fresh-link\">\n    <tile-dynamic data-qa=\"tile\">\n        <rt-img\n            alt=\"Curb Your Enthusiasm: Season 12 poster image\"\n            slot=\"image\"\n            src=\"https://resizing.flixster.com/m-trsJs01sQN6ARI2-hJCu2WU4s=/206x305/v2/https://resizing.flixster.com/b9gvtPGcJl_0dIXdvm69YhE4bfc=/fit-in/180x240/v2/https://resizing.flixster.com/gNI9n58gAPFNbTXZ55BfAvO05gM=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vODEzNTE1ZDctYTAxNC00MGNhLTk1NjUtODcxMjhmZjViMTg2LmpwZw==\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\" data-track=\"scores\">\n            <score-icon-critic-deprecated\n                alignment=\"left\"\n                percentage=\"95\"\n                state=\"certified_fresh\"\n            ></score-icon-critic-deprecated>\n            <span class=\"p--small\">Curb Your Enthusiasm: Season 12</span>\n            <span class=\"sr-only\">Link to Curb Your Enthusiasm: Season 12</span>\n        </div>\n    </tile-dynamic>\n</a>\n              </li>\n            </ul>\n          </rt-header-nav-item-dropdown-list>\n        \n      </rt-header-nav-item-dropdown>\n    </rt-header-nav-item>\n\n    <rt-header-nav-item slot=\"shop\">\n      <a class=\"unset\"\n          id=\"shopLink\"\n          slot=\"link\"\n          href=\"https://editorial.rottentomatoes.com/article/shop/\"\n          target=\"_blank\"\n          data-qa=\"masthead:shop-link\"\n      >\n          Shop\n          <temporary-display\n            slot=\"temporary-display\"\n            key=\"shop\"\n            element=\"#shopLink\"\n            event=\"click\"\n          >\n            <rt-badge hidden>New</rt-badge>\n          </temporary-display>\n      </a>\n    </rt-header-nav-item>\n\n    <rt-header-nav-item slot=\"news\" data-qa=\"masthead:news\">\n      <a class=\"unset\" slot=\"link\" href=\"https://editorial.rottentomatoes.com/\" data-qa=\"masthead:news-link\">News</a>\n      <rt-header-nav-item-dropdown aria-expanded=\"false\" slot=\"dropdown\">\n        <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-news-columns\">\n          <p slot=\"title\" class=\"h4\">Columns</p>\n          <ul slot=\"links\">\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/all-time-lists/\" data-pageheader=\"All-Time Lists\" data-qa=\"column-link\">\n                All-Time Lists\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/binge-guide/\" data-pageheader=\"Binge Guide\" data-qa=\"column-link\">\n                Binge Guide\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/comics-on-tv/\" data-pageheader=\"Comics on TV\" data-qa=\"column-link\">\n                Comics on TV\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/countdown/\" data-pageheader=\"Countdown\" data-qa=\"column-link\">\n                Countdown\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/five-favorite-films/\" data-pageheader=\"Five Favorite Films\" data-qa=\"column-link\">\n                Five Favorite Films\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/video-interviews/\" data-pageheader=\"Video Interviews\" data-qa=\"column-link\">\n                Video Interviews\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/weekend-box-office/\" data-pageheader=\"Weekend Box Office\" data-qa=\"column-link\"\n              >Weekend Box Office\n            </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/weekly-ketchup/\" data-pageheader=\"Weekly Ketchup\" data-qa=\"column-link\">\n                Weekly Ketchup\n              </a>\n            </li>\n            <li data-qa=\"column-item\">\n              <a href=\"https://editorial.rottentomatoes.com/what-to-watch/\" data-pageheader=\"What to Watch\" data-qa=\"column-link\">\n                What to Watch\n              </a>\n            </li>\n          </ul>\n        </rt-header-nav-item-dropdown-list>\n\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-news-guides\">\n            <p slot=\"title\" class=\"h4\">Guides</p>\n            <ul slot=\"links\" class=\"news-wrap\">\n              \n                <li data-qa=\"guides-item\">\n                  <a class=\"news-tile\" href=\"https://editorial.rottentomatoes.com/guide/all-coen-brothers-movies-ranked-by-tomatometer/\" data-qa=\"news-link\">\n    <tile-dynamic\n        data-qa=\"tile\"\n        orientation=\"landscape\"\n    >\n        <rt-img\n            alt=\"All Coen Brothers Movies Ranked by Tomatometer poster image\"\n            slot=\"image\"\n            src=\"https://prd-rteditorial.s3.us-west-2.amazonaws.com/wp-content/uploads/2021/12/22091609/600DriveAwayDolls.jpg\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\">\n            <p>All Coen Brothers Movies Ranked by Tomatometer</p>\n            <span class=\"sr-only\">Link to All Coen Brothers Movies Ranked by Tomatometer</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n                <li data-qa=\"guides-item\">\n                  <a class=\"news-tile\" href=\"https://editorial.rottentomatoes.com/guide/best-movies-of-2024/\" data-qa=\"news-link\">\n    <tile-dynamic\n        data-qa=\"tile\"\n        orientation=\"landscape\"\n    >\n        <rt-img\n            alt=\"Best Movies of 2024: Best New Movies to Watch Now poster image\"\n            slot=\"image\"\n            src=\"https://prd-rteditorial.s3.us-west-2.amazonaws.com/wp-content/uploads/2023/12/28143550/Dune2.jpg\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\">\n            <p>Best Movies of 2024: Best New Movies to Watch Now</p>\n            <span class=\"sr-only\">Link to Best Movies of 2024: Best New Movies to Watch Now</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n            </ul>\n            <a\n              class=\"a--short\"\n              data-qa=\"guides-view-all-link\"\n              href=\"https://editorial.rottentomatoes.com/countdown/\"\n              slot=\"view-all-link\"\n            >\n              View All\n            </a>\n          </rt-header-nav-item-dropdown-list>\n        \n\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-news-hubs\">\n            <p slot=\"title\" class=\"h4\">Hubs</p>\n            <ul slot=\"links\" class=\"news-wrap\">\n              \n                <li data-qa=\"hubs-item\">\n                  <a class=\"news-tile\" href=\"https://editorial.rottentomatoes.com/rt-hub/black-heritage/\" data-qa=\"news-link\">\n    <tile-dynamic\n        data-qa=\"tile\"\n        orientation=\"landscape\"\n    >\n        <rt-img\n            alt=\"Black Heritage poster image\"\n            slot=\"image\"\n            src=\"https://prd-rteditorial.s3.us-west-2.amazonaws.com/wp-content/uploads/2023/01/08122059/RT_BHM_2024_Representative_600x314.jpg\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\">\n            <p>Black Heritage</p>\n            <span class=\"sr-only\">Link to Black Heritage</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n                <li data-qa=\"hubs-item\">\n                  <a class=\"news-tile\" href=\"https://editorial.rottentomatoes.com/rt-hub/golden-tomato-awards-best-movies-tv-of-2023/\" data-qa=\"news-link\">\n    <tile-dynamic\n        data-qa=\"tile\"\n        orientation=\"landscape\"\n    >\n        <rt-img\n            alt=\"Golden Tomato Awards: Best Movies &#038; TV of 2023 poster image\"\n            slot=\"image\"\n            src=\"https://prd-rteditorial.s3.us-west-2.amazonaws.com/wp-content/uploads/2023/12/28083601/GTA_Thumb_2023_Main.jpg\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\">\n            <p>Golden Tomato Awards: Best Movies &#038; TV of 2023</p>\n            <span class=\"sr-only\">Link to Golden Tomato Awards: Best Movies &#038; TV of 2023</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n            </ul>\n            <a\n              class=\"a--short\"\n              data-qa=\"hubs-view-all-link\"\n              href=\"https://editorial.rottentomatoes.com/rt-hubs/\"\n              slot=\"view-all-link\"\n            >\n              View All\n            </a>\n          </rt-header-nav-item-dropdown-list>\n        \n\n        \n          <rt-header-nav-item-dropdown-list slot=\"column\" data-qa=\"header-news-rt-news\">\n            <p slot=\"title\" class=\"h4\">RT News</p>\n            <ul slot=\"links\" class=\"news-wrap\">\n              \n                <li data-qa=\"rt-news-item\">\n                  <a class=\"news-tile\" href=\"https://editorial.rottentomatoes.com/article/avatar-the-last-airbender-first-reviews-it-isnt-perfect-but-its-respectful-of-the-original-and-fun/\" data-qa=\"news-link\">\n    <tile-dynamic\n        data-qa=\"tile\"\n        orientation=\"landscape\"\n    >\n        <rt-img\n            alt=\"<em>Avatar: The Last Airbender</em> First Reviews: It Isn&#8217;t Perfect, but It&#8217;s Respectful of the Original and Fun poster image\"\n            slot=\"image\"\n            src=\"https://prd-rteditorial.s3.us-west-2.amazonaws.com/wp-content/uploads/2024/02/21225435/avatar-the-last-airbender-netflix-key-art.jpg\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\">\n            <p><em>Avatar: The Last Airbender</em> First Reviews: It Isn&#8217;t Perfect, but It&#8217;s Respectful of the Original and Fun</p>\n            <span class=\"sr-only\">Link to <em>Avatar: The Last Airbender</em> First Reviews: It Isn&#8217;t Perfect, but It&#8217;s Respectful of the Original and Fun</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n                <li data-qa=\"rt-news-item\">\n                  <a class=\"news-tile\" href=\"https://editorial.rottentomatoes.com/article/tv-premiere-dates-2024/\" data-qa=\"news-link\">\n    <tile-dynamic\n        data-qa=\"tile\"\n        orientation=\"landscape\"\n    >\n        <rt-img\n            alt=\"TV Premiere Dates 2024 poster image\"\n            slot=\"image\"\n            src=\"https://prd-rteditorial.s3.us-west-2.amazonaws.com/wp-content/uploads/2024/02/22140327/TV_Premiere_Dates_2024_Boys_S4-Rep.jpg\"\n            loading=\"lazy\"\n        ></rt-img>\n        <div slot=\"caption\">\n            <p>TV Premiere Dates 2024</p>\n            <span class=\"sr-only\">Link to TV Premiere Dates 2024</span>\n        </div>\n    </tile-dynamic>\n</a>\n                </li>\n              \n            </ul>\n            <a\n              class=\"a--short\"\n              data-qa=\"rt-news-view-all-link\"\n              href=\"https://editorial.rottentomatoes.com/news/\"\n              slot=\"view-all-link\"\n            >\n              View All\n            </a>\n          </rt-header-nav-item-dropdown-list>\n        \n      </rt-header-nav-item-dropdown>\n    </rt-header-nav-item>\n\n    <rt-header-nav-item slot=\"showtimes\">\n      <a\n        class=\"unset\"\n        slot=\"link\"\n        href=\"https://www.fandango.com/movies-in-theaters\"\n        target=\"_blank\"\n        rel=\"noopener\"\n        data-qa=\"masthead:tickets-showtimes-link\"\n      >\n        Showtimes\n      </a>\n    </rt-header-nav-item>\n  </rt-header-nav>\n\n</rt-header>\n<section class=\"trending-bar\">\n  \n\n  <ad-unit hidden id=\"trending_bar_ad\" unitdisplay=\"desktop\" unittype=\"trendinggraphic\" data-AdUnitManager=\"adUnit:error\">\n    <div slot=\"adInject\"></div>\n  </ad-unit>\n  <div id=\"trending-bar-start\" class=\"trending-list-wrap\" data-qa=\"trending-bar\">\n    <ul class=\"list-inline trending-bar__list\" data-curation=\"rt-nav-trending\"\n      data-qa=\"trending-bar-list\">\n      <li class=\"trending-bar__header\">Trending on RT</li>\n      \n      <li><a class=\"trending-bar__link\" href=\"https://www.rottentomatoes.com/tv/avatar_the_last_airbender_2024/s01\"  data-qa=\"trending-bar-item\"> Avatar: The Last Airbender </a></li>\n      \n      <li><a class=\"trending-bar__link\" href=\"https://www.rottentomatoes.com/movie-trivia/\"  data-qa=\"trending-bar-item\"> Play Movie Trivia  </a></li>\n      \n      <li><a class=\"trending-bar__link\" href=\"https://www.rottentomatoes.com/m/dune_part_two\"  data-qa=\"trending-bar-item\"> Dune: Part Two </a></li>\n      \n      <li><a class=\"trending-bar__link\" href=\"https://www.rottentomatoes.com/m/madame_web\"  data-qa=\"trending-bar-item\"> Madame Web </a></li>\n      \n    </ul>\n    <div class=\"trending-bar__social\" data-qa=\"trending-bar-social-list\" style=\"width: 135px;\">\n      <social-media-icons theme=\"light\" size=\"14\"></social-media-icons>\n    </div>\n  </div>\n</section>\n\n\n\n            <main id=\"main_container\" class=\"container rt-layout__content\">\n                <bottom-nav data-qa=\"bottom-nav\" data-DiscoveryGridsManager=\"bottomNavComponent\">\n                    <a slot=\"template\">\n                        <bottom-nav-item></bottom-nav-item>\n                    </a>\n                </bottom-nav>\n                <div id=\"main-page-content\">\n                    \n\n    \n\n    \n                    \n\n    <!-- salt=home-sticky-wicket-88 -->\n    <div class=\"home-body\">\n        <page-home-manager></page-home-manager>\n\n        \n            <section id=\"editorial-spotlight\" data-qa=\"editorial-spotlight\">\n    <editorial-spotlight skeleton=\"panel\" data-qa=\"editorial-spotlight-carousel\">\n        <button slot=\"btnPrev\">\n            <rt-icon image icon=\"left-chevron\"></rt-icon>\n        </button>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/avatar-the-last-airbender-first-reviews-it-isnt-perfect-but-its-respectful-of-the-original-and-fun/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-1\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"high\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/Y3UIh4WysmsSQHQHNfgrNVHo_fs=/550x310/v2/https://images.fandango.com/cms/assets/e994a720-d1c5-11ee-888e-b987c7e657bd--550avatar-last-airbender-reviews.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2><em>Avatar</em> First Reviews</h2>\n                        <p>It's not perfect, but it's respectful of the original and fun</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/dune-part-two-first-reviews-a-towering-feat-of-sci-fi-cinema-critics-say/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-2\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/G6th_zBwsKA2X9CbRvfOprNNrj4=/550x310/v2/https://images.fandango.com/cms/assets/1540e5a0-cc62-11ee-a14e-3f3f55d13640--550dune-part-two-first-reactions.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2><em>Dune: Part Two</em> First Reviews</h2>\n                        <p>Critics say it's \"the <em>Lawrence of Arabia</em> of science fiction\"</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/tv-premiere-dates-2024/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-3\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/SkPGAXNSNJqu_qMdQEZwoCcsRKU=/550x310/v2/https://images.fandango.com/cms/assets/cdd04f30-d1de-11ee-888e-b987c7e657bd--tv-premiere-dates-2024-boys-s4-rep.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2>TV Premiere Dates</h2>\n                        <p><em>The Boys</em> will return for season four on June 13.</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/10-iconic-shows-that-made-the-90s-a-revolutionary-decade-for-black-television/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-4\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/9GZqenIfy1CjVbTycbTqKsxchFQ=/550x310/v2/https://images.fandango.com/cms/assets/6425dcc0-d117-11ee-a0b3-074bf17e9f79--550bhm-black-tv-90s.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2>10 Iconic Black TV Shows of the '90s</h2>\n                        <p><em>The Fresh Prince of Bel-Air</em> and more made it a revolutionary decade</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/the-avatar-the-last-airbender-cast-talk-favorite-bending-abilities-and-staying-true-to-the-original/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-5\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/mPUrVJtJmUYXodOMG9tQa6SJjG4=/550x310/v2/https://images.fandango.com/cms/assets/c20328e0-d106-11ee-888e-b987c7e657bd--550avatar-last-airbender-junket.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2>The <em>Avatar</em> Cast's Favorite Bending Abilities</h2>\n                        <p>Gordon Cormier and co. talk movie magic and more</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/air-barbie-and-oppenheimer-earn-wga-screenplay-nominations/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-6\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/e91sz6v3ghVie_YE0rs3fiD66lM=/550x310/v2/https://images.fandango.com/cms/assets/b1b43d20-aaa1-11ee-8105-b7f85fb17c0d--barbie-first-reviews-rep.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2><em>Air</em>, <em>Barbie</em>, and <em>Oppenheimer</em> Earn WGA Screenplay Nominations</h2>\n                        <p><em>The Bear</em> and <em>Succession</em> lead all TV nominations with three each </p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/article/everything-we-know-about-borderlands/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-7\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/lFezMLxVFySsDHc7YxoFDCPgRv8=/550x310/v2/https://images.fandango.com/cms/assets/1a51b1b0-d0df-11ee-9cd3-0ba10eb10e8f--600-borderlands.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2>Everything We Know About <em>Borderlands</em></h2>\n                        <p>Watch the official trailer starring Cate Blanchett, Kevin Hart, Jack Black, Ariana Gleenblatt, Florian Munteanu and Jamie Lee Curtis</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n            <a \n                class=\"article\"\n                href=\"https://editorial.rottentomatoes.com/guide/box-office-2024-movies/\"\n                slot=\"articles\"\n                data-qa=\"editorial-spotlight-carousel-article-8\"\n            >\n                <editorial-spotlight-tile\n                    skeleton=\"panel\"\n                >\n                    <img\n                        fetchpriority=\"low\"\n                        slot=\"image\"\n                        src=\"https://resizing.flixster.com/Dzq5m6tVc4V2fnr8FTZMnonms_k=/550x310/v2/https://images.fandango.com/cms/assets/45c38140-d047-11ee-9cd3-0ba10eb10e8f--600bobmarley.jpg\"\n                    />\n                    <div slot=\"caption\">\n                        <h2>Box Office 2024: Top 10 Movies of the Year</h2>\n                        <p>Here are the top 10 highest-grossing movies released in 2024 at the domestic box office</p>\n                    </div>\n                </editorial-spotlight-tile>\n            </a>\n        \n        <button slot=\"btnNext\">\n            <rt-icon image icon=\"right-chevron\"></rt-icon>\n        </button>\n    \n        <a \n            href=\"https://editorial.rottentomatoes.com/article/renewed-and-cancelled-tv-shows-2024/\"\n            id=\"spotlight1\"\n            slot=\"spotlight1\"\n            data-qa=\"editorial-spotlight-1\"\n        >\n            <editorial-spotlight-tile\n                skeleton=\"panel\"\n            >\n                <img\n                    fetchpriority=\"high\"\n                    slot=\"image\"\n                    src=\"https://resizing.flixster.com/z73yCjek3Ht1JR-s4O9IP0uBqXg=/540x610/v2/https://images.fandango.com/cms/assets/214657c0-ba67-11ee-aacf-bf03979f2ab5--600truedetectivenight.jpg\"\n                />\n                <div slot=\"caption\">\n                    <h2>Renewed TV </h2>\n                    <p><em>True Detective</em> is renewed for fifth season</p>\n                </div>\n            </editorial-spotlight-tile>\n        </a>\n\n        <a \n            href=\"https://www.rottentomatoes.com/movie-trivia/\"\n            id=\"spotlight2\"\n            slot=\"spotlight2\"\n            data-qa=\"editorial-spotlight-2\"\n        >\n            <editorial-spotlight-tile\n                skeleton=\"panel\"\n            >\n                <img\n                    fetchpriority=\"high\"\n                    slot=\"image\"\n                    src=\"https://resizing.flixster.com/CvwOPUPCZBIpK5FUx0rnHlTOszA=/540x610/v2/https://images.fandango.com/cms/assets/e5fdfaf0-8d54-11ed-83f2-4f600722b564--dailytomato-spotlight.jpg\"\n                />\n                <div slot=\"caption\">\n                    <h2>Play Daily Tomato</h2>\n                    <p>Can you guess today's movie trivia? </p>\n                </div>\n            </editorial-spotlight-tile>\n        </a>\n    </editorial-spotlight>\n\n    <ad-unit\n        hidden\n        unitdisplay=\"desktop\" \n        unittype=\"spotlight\"\n        data-AdUnitManager=\"adUnit:error\"\n    >\n        <div slot=\"adInject\"></div>\n    </ad-unit>\n</section>\n        \n\n        <watchlist-button-manager></watchlist-button-manager>\n        \n\n        <section id=\"media-lists\" data-qa=\"section:media-lists\">\n    \n    \n        <div class=\"ordered-layout__list ordered-layout__list--carousel\" data-curation=\"rt-hp-poster-list-coming-soon\">\n  \n  \n  <section class=\"dynamic-poster-list\" data-qa=\"dynamic-poster-list\">\n    <div class=\"dynamic-poster-list__header-container--hide-h3\">\n      <div>\n        \n          <h2 data-qa=\"title\">New &amp; Upcoming Movies In Theaters</h2>\n        \n\n        \n          <a href=\"https://www.rottentomatoes.com/browse/movies_in_theaters/sort:newest\" class=\"a--short\" data-track=\"showmore\">View all</a>\n        \n      </div>\n\n      \n    </div>\n    \n    \n\n    <tiles-carousel-responsive-deprecated skeleton=\"panel\">\n\n      <button slot=\"scroll-left\">\n        <rt-icon slot=\"icon-arrow-left\" image icon=\"left-chevron\"></rt-icon>\n      </button>\n\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/K40MhoOWIcAOdV2t7Y_WXnSHElQ=/206x305/v2/https://resizing.flixster.com/FIOp_WwchuUJaBsNmsyhDFBZlRQ=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzc1ZDdhZDZlLWU1ZjgtNDI4MC1iOGUzLWQ0NmY4ODYzZThlNy5qcGc=\"\n                alt=\"Drive-Away Dolls poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Drive-Away Dolls trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"84a5799a-8af4-3762-87a3-9f1e533f2260\"\n                  data-mpx-id=\"2306767939753\"\n                  data-position=\"1\"\n                  data-public-id=\"QA3c_dnHruL6\"\n                  data-title=\"Drive-Away Dolls\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Drive-Away Dolls</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/drive_away_dolls\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"67\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Drive-Away Dolls</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"84a5799a-8af4-3762-87a3-9f1e533f2260\" mediatype=\"Movie\" mediatitle=\"Drive-Away Dolls\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/LMzh7JTMueOlxDkPlen2mEuf83U=/206x305/v2/https://resizing.flixster.com/W--gS56DmqVs-39QzM-OIzXHQR8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2E2YjhjZGMyLTEzMTEtNDY0NC1hYTEyLWM5YThiOWRjNjI2ZS5qcGc=\"\n                alt=\"Ordinary Angels poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Ordinary Angels trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ea4a5261-34cd-4abb-81b1-49381b056547\"\n                  data-mpx-id=\"2259317315854\"\n                  data-position=\"2\"\n                  data-public-id=\"oEBKCzrps_hs\"\n                  data-title=\"Ordinary Angels\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Ordinary Angels</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/ordinary_angels\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"78\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Ordinary Angels</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ea4a5261-34cd-4abb-81b1-49381b056547\" mediatype=\"Movie\" mediatitle=\"Ordinary Angels\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/wJZ_Z4-fE4ZXS89SOOvk5jVDOI0=/206x305/v2/https://resizing.flixster.com/zHrh5Wu9CxOi55eiImv27H-7zMw=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzliMTVjNTkwLTA1ZTUtNDEyMS04NmNmLTBiMzA2OThhMGY0MC5qcGc=\"\n                alt=\"Tenet poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Tenet trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"98e7fc58-e962-460b-a61a-741981bfcac4\"\n                  data-mpx-id=\"2303629379752\"\n                  data-position=\"3\"\n                  data-public-id=\"8UkgkYe5j2YE\"\n                  data-title=\"Tenet\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Tenet</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/tenet\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"69\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Tenet</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"98e7fc58-e962-460b-a61a-741981bfcac4\" mediatype=\"Movie\" mediatitle=\"Tenet\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/les_miserables_2012\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/RK2mNygr5CajQIICcvjLQIUf_iA=/206x305/v2/https://resizing.flixster.com/2-3mVX7SzXfcqZvdacCTufGA3DE=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2E2MzUyOWM2LTcxNTQtNGRkNS04MjJhLTdiMGI5YTZiZmM5My5qcGc=\"\n                alt=\"Les Misérables poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"70\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Les Misérables</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"3738160b-3a93-3b98-8413-ff336cef268d\" mediatype=\"Movie\" mediatitle=\"Les Misérables\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/QwO-nRLkBjU8-BlAz7xHdvUvalE=/206x305/v2/https://resizing.flixster.com/PgHhmCKS3hR6GUsVNlC-vZ9d90I=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZhOTA0OTIzLTEwNDctNDhkNS1iNTc3LTY3MjBmNDc5OGU1Mi5qcGc=\"\n                alt=\"Dune: Part Two poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Dune: Part Two trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"cecd223d-a20d-3268-bbef-9a4c847c673d\"\n                  data-mpx-id=\"2291543619909\"\n                  data-position=\"5\"\n                  data-public-id=\"3uVjDzzml2kM\"\n                  data-title=\"Dune: Part Two\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Dune: Part Two</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/dune_part_two\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Dune: Part Two</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"cecd223d-a20d-3268-bbef-9a4c847c673d\" mediatype=\"Movie\" mediatitle=\"Dune: Part Two\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/uMJ_njE2ZMb2Q86q2NkEsNcfKAY=/206x305/v2/https://resizing.flixster.com/PcYbZio4-LZuZJ_XghAxT1GbscY=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzRhYThlNmUwLTRlMjMtNDA3Ny04ZGY5LTY4MzA5YTcyNjcwMC5qcGc=\"\n                alt=\"Bob Marley: One Love poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Bob Marley: One Love trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"5d722cc7-8338-360c-93da-b71dac142fb5\"\n                  data-mpx-id=\"2289444931543\"\n                  data-position=\"6\"\n                  data-public-id=\"dXaamiqJYBpG\"\n                  data-title=\"Bob Marley: One Love\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Bob Marley: One Love</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/bob_marley_one_love\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"43\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Bob Marley: One Love</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"5d722cc7-8338-360c-93da-b71dac142fb5\" mediatype=\"Movie\" mediatitle=\"Bob Marley: One Love\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/v7ChpVedPRkyO6JenqveyvGr5DQ=/206x305/v2/https://resizing.flixster.com/zUIDgUBHepK7NGgrmXIvNnzvJaM=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzA5OWUxNjRlLTNlMmUtNDVhMS05YmEwLTQzZTAyN2I4ZWQxNy5qcGc=\"\n                alt=\"Madame Web poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Madame Web trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"7ddaaf2e-c123-4dce-a273-d06cfe249bc6\"\n                  data-mpx-id=\"2283132483814\"\n                  data-position=\"7\"\n                  data-public-id=\"GDz9uCQg37cY\"\n                  data-title=\"Madame Web\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Madame Web</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/madame_web\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"13\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Madame Web</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"7ddaaf2e-c123-4dce-a273-d06cfe249bc6\" mediatype=\"Movie\" mediatitle=\"Madame Web\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/oYlkLSrl8Trw21aF4xyAX3vvsgg=/206x305/v2/https://resizing.flixster.com/MA1jApUB2_khJgmMVN-0VOseqrA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzRlZGUyZmRiLWViMDQtNDVmZC1iOTI5LTE2NmJhMzIzM2NhNy5qcGc=\"\n                alt=\"Lisa Frankenstein poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Lisa Frankenstein trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"f1cf522b-9e76-4ab3-855b-01b0cc6750d6\"\n                  data-mpx-id=\"2296941123943\"\n                  data-position=\"8\"\n                  data-public-id=\"PPmZzVlEfg8o\"\n                  data-title=\"Lisa Frankenstein\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Lisa Frankenstein</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/lisa_frankenstein\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"51\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Lisa Frankenstein</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"f1cf522b-9e76-4ab3-855b-01b0cc6750d6\" mediatype=\"Movie\" mediatitle=\"Lisa Frankenstein\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/what_about_love\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/MQWcmzxB0LqmDzoOsdS9bllA5X0=/206x305/v2/https://resizing.flixster.com/HNxngfvov0qhin3m67DbFWwiGDw=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzM1NjI0ODlhLWQ1YTktNGIyOC1iM2QyLWFlNGY0ODlmYTQ3Yi5qcGc=\"\n                alt=\"What About Love poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"\"\n                  criticsscore=\"\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">What About Love</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"7f919e95-a826-4b96-b236-2c738979b473\" mediatype=\"Movie\" mediatitle=\"What About Love\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ilFKzJO9UyOdgFs9L7Y7-T-iKgg=/206x305/v2/https://resizing.flixster.com/JdMayYRDBiWLQAcfMSIhgpddN20=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzNkNTI4ODdiLTAyYTQtNGMxYS1hNGEwLTYzNDMwM2JjZDIwYi5qcGc=\"\n                alt=\"Anyone But You poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Anyone But You trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"0b0585a0-d887-33ff-baba-0c39ef39a38c\"\n                  data-mpx-id=\"2283792451756\"\n                  data-position=\"10\"\n                  data-public-id=\"9lqLEx1QtxwG\"\n                  data-title=\"Anyone But You\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Anyone But You</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/anyone_but_you_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"53\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Anyone But You</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"0b0585a0-d887-33ff-baba-0c39ef39a38c\" mediatype=\"Movie\" mediatitle=\"Anyone But You\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/bzipESk8CBuKKGUPc4UidZ-tu6o=/206x305/v2/https://resizing.flixster.com/gT6NcfmUJNbiOz3gPUByxps_FcM=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzM0YWFlNzMzLWViMDAtNDAyZi1iY2RmLWMzNzkxNzUzMzA0Yi5qcGc=\"\n                alt=\"Turning Red poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Turning Red trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"e064faef-8426-4c8e-a986-ff6ff7764eeb\"\n                  data-mpx-id=\"1975022147859\"\n                  data-position=\"11\"\n                  data-public-id=\"GDhDJuvbr7Ey\"\n                  data-title=\"Turning Red\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Turning Red</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/turning_red\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"95\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Turning Red</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"e064faef-8426-4c8e-a986-ff6ff7764eeb\" mediatype=\"Movie\" mediatitle=\"Turning Red\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/r0qz6KJo31MyuEOpohOkwVNT_z0=/206x305/v2/https://resizing.flixster.com/Uh8VoIB9GDCQqXlO1qMhvBE2f8g=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzQzYjgyMjAwLTUyM2UtNGIyMy1hMGM4LWJmZmNkN2JlZTNhOS5wbmc=\"\n                alt=\"Drift poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Drift trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"e7bfb58f-8915-4fa5-82ff-dd85171a295d\"\n                  data-mpx-id=\"2276685379561\"\n                  data-position=\"12\"\n                  data-public-id=\"yQ_bhQyYvpsr\"\n                  data-title=\"Drift\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Drift</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/drift_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"72\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Drift</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"e7bfb58f-8915-4fa5-82ff-dd85171a295d\" mediatype=\"Movie\" mediatitle=\"Drift\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/UHX6rqBEKFrtyEGImsdbsJqdw5U=/206x305/v2/https://resizing.flixster.com/sutljIrYjy_CppdngrSZTk1V4bI=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2RiZmY2NGJjLWI2NjEtNDkzNS04ODdmLTNhYmViNDUxOTY4Mi5qcGc=\"\n                alt=\"Argylle poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Argylle trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"9daad3be-9340-4e97-a2e4-6fc4d1aa0ea3\"\n                  data-mpx-id=\"2267784771776\"\n                  data-position=\"13\"\n                  data-public-id=\"LPieoRGLTWGz\"\n                  data-title=\"Argylle\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Argylle</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/argylle\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"33\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Argylle</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"9daad3be-9340-4e97-a2e4-6fc4d1aa0ea3\" mediatype=\"Movie\" mediatitle=\"Argylle\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/omrYMN_zu50icHEUFLhANA3oZ24=/206x305/v2/https://resizing.flixster.com/Z62PRj-5DETg1_ksFxrZCyLt35U=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2I3Mzk5YThhLTgxODAtNDlmOC1hMDBmLTY2YjMzMDhjMmZjYi5qcGc=\"\n                alt=\"Marmalade poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Marmalade trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ed92382f-466d-4306-9ca9-e1540b93d801\"\n                  data-mpx-id=\"2296983619582\"\n                  data-position=\"14\"\n                  data-public-id=\"U9SVWF2zjpSQ\"\n                  data-title=\"Marmalade\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Marmalade</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/marmalade_2024\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"78\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Marmalade</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ed92382f-466d-4306-9ca9-e1540b93d801\" mediatype=\"Movie\" mediatitle=\"Marmalade\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/HZvw6CZU9xDzrxaNjamgDrZYTPc=/206x305/v2/https://resizing.flixster.com/JDgsO5O8hd0B6vNkS9LILWwoT0o=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzc3NzY1NmM4LWRkNGYtNDBkNy05NDI1LWFiMTZkMjAwNjZlMi5qcGc=\"\n                alt=\"The Promised Land poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Promised Land trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ffc7300e-1657-4115-98de-5037e2164865\"\n                  data-mpx-id=\"2292255811653\"\n                  data-position=\"15\"\n                  data-public-id=\"F7nu2ofjo3OU\"\n                  data-title=\"The Promised Land\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Promised Land</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_promised_land_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"96\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Promised Land</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ffc7300e-1657-4115-98de-5037e2164865\" mediatype=\"Movie\" mediatitle=\"The Promised Land\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/lsr-5LW5SqplNVtbKU74cVWHwQ4=/206x305/v2/https://resizing.flixster.com/rB_eKSR-s0ZPo8v6qQaGk4uRaWk=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzczZGU2MWQ5LTE4MmMtNDA5Mi1hODJlLWI1NTg0MzJiYTgwZi5qcGc=\"\n                alt=\"Sometimes I Think About Dying poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Sometimes I Think About Dying trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c0f64db0-6ba6-4a1b-b849-c784d4ad1658\"\n                  data-mpx-id=\"2281908291535\"\n                  data-position=\"16\"\n                  data-public-id=\"H9YJyfI1by_G\"\n                  data-title=\"Sometimes I Think About Dying\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Sometimes I Think About Dying</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/sometimes_i_think_about_dying_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"81\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Sometimes I Think About Dying</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c0f64db0-6ba6-4a1b-b849-c784d4ad1658\" mediatype=\"Movie\" mediatitle=\"Sometimes I Think About Dying\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/_g2e2q0Y8O9qNz7cBZ_KHEvp_R8=/206x305/v2/https://resizing.flixster.com/V_BDzhs2rL-tPIj6fv6f-G7gpGM=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzAxMzFmMjk3LTNlYjQtNDM2MC05Y2QzLTdlOWIyN2NhMDZiNS5qcGc=\"\n                alt=\"The Chosen: Season 4 - Episodes 4-6 poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Chosen: Season 4 - Episodes 4-6 trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"1389f8c1-ab40-4497-89db-6e2ea505c847\"\n                  data-mpx-id=\"2309070403689\"\n                  data-position=\"17\"\n                  data-public-id=\"6_G5keu2k5tM\"\n                  data-title=\"The Chosen: Season 4 - Episodes 4-6\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Chosen: Season 4 - Episodes 4-6</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_chosen_season_4_episodes_4_6\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"\"\n                  criticsscore=\"\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Chosen: Season 4 - Episodes 4-6</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"1389f8c1-ab40-4497-89db-6e2ea505c847\" mediatype=\"Movie\" mediatitle=\"The Chosen: Season 4 - Episodes 4-6\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/UU4h-TvzPVjTLMJxrsAhuVqxpUY=/206x305/v2/https://resizing.flixster.com/jlKs0hwcaop9kaQw7GOI4rBd6TU=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2QxZDJiYmNhLTc1MWQtNGY2ZC04YmM3LTZkYWMzMzFkMzM5Zi5qcGc=\"\n                alt=\"Land of Bad poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Land of Bad trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c690622c-1864-34de-b130-9c3171149992\"\n                  data-mpx-id=\"2294546499562\"\n                  data-position=\"18\"\n                  data-public-id=\"UgrZUWZTlcSB\"\n                  data-title=\"Land of Bad\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Land of Bad</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/land_of_bad\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"61\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Land of Bad</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c690622c-1864-34de-b130-9c3171149992\" mediatype=\"Movie\" mediatitle=\"Land of Bad\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/14wcBCi76E2sPMNAa86lEMRPt6E=/206x305/v2/https://resizing.flixster.com/Ic1JD3hrvATQkjg00zw0u0mO9ac=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzg2YmMxZmE1LTQ2ZmQtNDNmNi1iMTQ3LWQ0NzBmODQ2ZmZlNi5qcGc=\"\n                alt=\"Origin poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Origin trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"45f225e9-0edc-4a3b-8e3a-419d87876f0c\"\n                  data-mpx-id=\"2292546115944\"\n                  data-position=\"19\"\n                  data-public-id=\"jWFbmNR3PsWh\"\n                  data-title=\"Origin\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Origin</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/origin_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"83\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Origin</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"45f225e9-0edc-4a3b-8e3a-419d87876f0c\" mediatype=\"Movie\" mediatitle=\"Origin\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/kA6-FdcKblmi2o2ayI8Eog2Kzcs=/206x305/v2/https://resizing.flixster.com/0YWXiIrzIIikzllZUpKsCoHJVFY=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzQxMzU5NGYyLTA5N2MtNDI0MS04YTI5LWNkMTg3NTZlMTU3MC5qcGc=\"\n                alt=\"Mean Girls poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Mean Girls trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"b32c9a6e-ad44-30aa-9aa6-29d69889c552\"\n                  data-mpx-id=\"2296576067692\"\n                  data-position=\"20\"\n                  data-public-id=\"yhuJboRJ1ed_\"\n                  data-title=\"Mean Girls\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-coming-soon\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Mean Girls</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/mean_girls_2024\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"70\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Mean Girls</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"b32c9a6e-ad44-30aa-9aa6-29d69889c552\" mediatype=\"Movie\" mediatitle=\"Mean Girls\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n\n      <button slot=\"scroll-right\">\n        <rt-icon slot=\"icon-arrow-right\" image icon=\"right-chevron\"></rt-icon>\n      </button>\n      \n    </tiles-carousel-responsive-deprecated>\n  </section>\n\n</div>\n\n\n        \n            \n\n        \n    \n        <div class=\"ordered-layout__list ordered-layout__list--carousel\" data-curation=\"rt-hp-poster-list-cfp\">\n  \n  \n  <section class=\"dynamic-poster-list\" data-qa=\"dynamic-poster-list\">\n    <div class=\"dynamic-poster-list__header-container--hide-h3\">\n      <div>\n        \n          <h2 data-qa=\"title\">NEW &amp; UPCOMING ON STREAMING</h2>\n        \n\n        \n          <a href=\"https://www.rottentomatoes.com/browse/movies_at_home/\" class=\"a--short\" data-track=\"showmore\">View all</a>\n        \n      </div>\n\n      \n    </div>\n    \n    \n\n    <tiles-carousel-responsive-deprecated skeleton=\"panel\">\n\n      <button slot=\"scroll-left\">\n        <rt-icon slot=\"icon-arrow-left\" image icon=\"left-chevron\"></rt-icon>\n      </button>\n\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/4IH9cmxfP4MbiHptI5StAV8AX3c=/206x305/v2/https://resizing.flixster.com/1qLAtHQVAIsXY9F_94TSI7CR32M=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vZDExMjk0MTItNTY3YS00N2JhLTg4OWMtOGQ2NDJkNjZhMGNmLmpwZw==\"\n                alt=\"Avatar: The Last Airbender poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Avatar: The Last Airbender trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"cb3d07d8-7513-3dab-9848-34e14689e6d3\"\n                  data-mpx-id=\"2310418499561\"\n                  data-position=\"1\"\n                  data-public-id=\"aZbiO1BzgWu0\"\n                  data-title=\"Avatar: The Last Airbender\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Avatar: The Last Airbender</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/avatar_the_last_airbender_2024/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"60\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Avatar: The Last Airbender</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"cb3d07d8-7513-3dab-9848-34e14689e6d3\" mediatype=\"TvSeason\" mediatitle=\"Avatar: The Last Airbender\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/xVP07K399XhVGAYeAsNHciF4QSs=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p26027487_b_v13_ac.jpg\"\n                alt=\"Shōgun poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Shōgun trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeries\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"738cd96a-fe87-383e-83d8-fc7a345f54f3\"\n                  data-mpx-id=\"2308096579924\"\n                  data-position=\"2\"\n                  data-public-id=\"Y6xBtBfy9FYN\"\n                  data-title=\"Shōgun\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeries\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Shōgun</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/shogun_2024\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"100\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Shōgun</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"738cd96a-fe87-383e-83d8-fc7a345f54f3\" mediatype=\"TvSeries\" mediatitle=\"Shōgun\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/5bbfOrn5Stku1HxlkK4ISYi2uQk=/206x305/v2/https://resizing.flixster.com/dV1vfa4w_dB4wzk7A_VzThWUWw8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzEyZDMyYjZmLThmNzAtNDliNC1hMjFmLTA2ZWY4M2UyMjJhMi5qcGc=\"\n                alt=\"Oppenheimer poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Oppenheimer trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"07d7f9a2-3fa1-342a-b6ca-27fd594e04c6\"\n                  data-mpx-id=\"2203597891941\"\n                  data-position=\"3\"\n                  data-public-id=\"PBIZNyiLd6kk\"\n                  data-title=\"Oppenheimer\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Oppenheimer</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/oppenheimer_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"93\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Oppenheimer</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"07d7f9a2-3fa1-342a-b6ca-27fd594e04c6\" mediatype=\"Movie\" mediatitle=\"Oppenheimer\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/N9WsQDHXMeJATTAUG87pJoAYktA=/206x305/v2/https://resizing.flixster.com/0SjKE9tTpqSKh4O4XDAO0bMepz8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzNiMmY2NzMwLTExZTItNDlkYy1iZmU3LTVhYTQ0MGQwYWZiMS5qcGc=\"\n                alt=\"This Is Me... Now: A Love Story poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play This Is Me... Now: A Love Story trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"318142c2-7093-39c9-93ce-158034f5a9f2\"\n                  data-mpx-id=\"2300308547587\"\n                  data-position=\"4\"\n                  data-public-id=\"VnSol1frdWWr\"\n                  data-title=\"This Is Me... Now: A Love Story\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">This Is Me... Now: A Love Story</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/this_is_me_now_a_love_story\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"75\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">This Is Me... Now: A Love Story</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"318142c2-7093-39c9-93ce-158034f5a9f2\" mediatype=\"Movie\" mediatitle=\"This Is Me... Now: A Love Story\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/gKV6dGKv5GqjKZhiRzq-A0b75lw=/206x305/v2/https://resizing.flixster.com/h40iXY8S_b12_8xWJ28HYgESDnI=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2Q1MTU5OTU5LTU4OWUtNDg1NC1iMjg3LTg4ZDUzNjM0OTllNy5qcGc=\"\n                alt=\"Upgraded poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Upgraded trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"f932d58a-7053-468d-b18e-9cbacb63c2fa\"\n                  data-mpx-id=\"2299996739532\"\n                  data-position=\"5\"\n                  data-public-id=\"fTjF0F87rCDd\"\n                  data-title=\"Upgraded\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Upgraded</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/upgraded\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"79\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Upgraded</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"f932d58a-7053-468d-b18e-9cbacb63c2fa\" mediatype=\"Movie\" mediatitle=\"Upgraded\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/Lm2eQIArB7iT-byn-slTPWMZpKo=/206x305/v2/https://resizing.flixster.com/Q4RtYX28RkcwCMFDPrmGuOi_80Q=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vNWM0ZDBmZjYtNzViNi00MzNmLWE3Y2YtZjMyMjk5OTlhYjcxLmpwZw==\"\n                alt=\"Halo poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Halo trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c5b4a6a4-5629-36ed-a1cf-bb6ca868b34e\"\n                  data-mpx-id=\"2302407747943\"\n                  data-position=\"6\"\n                  data-public-id=\"PcSIxFfybrjX\"\n                  data-title=\"Halo\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Halo</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/halo/s02\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"94\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Halo</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c5b4a6a4-5629-36ed-a1cf-bb6ca868b34e\" mediatype=\"TvSeason\" mediatitle=\"Halo\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/CokptAftAHyw5vx-xn8gxomJxRU=/206x305/v2/https://resizing.flixster.com/gNI9n58gAPFNbTXZ55BfAvO05gM=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vODEzNTE1ZDctYTAxNC00MGNhLTk1NjUtODcxMjhmZjViMTg2LmpwZw==\"\n                alt=\"Curb Your Enthusiasm poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Curb Your Enthusiasm trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"8642fd7c-aa5b-3d1a-8f5d-692831677ca5\"\n                  data-mpx-id=\"2298806339884\"\n                  data-position=\"7\"\n                  data-public-id=\"5bgiJkiuextg\"\n                  data-title=\"Curb Your Enthusiasm\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Curb Your Enthusiasm</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/curb_your_enthusiasm/s12\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"95\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Curb Your Enthusiasm</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"8642fd7c-aa5b-3d1a-8f5d-692831677ca5\" mediatype=\"TvSeason\" mediatitle=\"Curb Your Enthusiasm\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/tGWYzzYGP8_mdn35rtYJ8-ILyaQ=/206x305/v2/https://resizing.flixster.com/rPf_9YUOiCKYpOtoT9RnLYzSu1s=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzg1NzFjNjE4LWFmMGUtNDcwNC04MTkzLTVkZTFlZTczNzY1YS5qcGc=\"\n                alt=\"Players poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Players trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"1f5b69e5-cfb7-32ae-967e-4f3ddb0ca853\"\n                  data-mpx-id=\"2298801731670\"\n                  data-position=\"8\"\n                  data-public-id=\"Q_hlJezFrnoL\"\n                  data-title=\"Players\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Players</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/players_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"46\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Players</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"1f5b69e5-cfb7-32ae-967e-4f3ddb0ca853\" mediatype=\"Movie\" mediatitle=\"Players\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/7FI8jksa5X_24Bqyq3S50frNXLY=/206x305/v2/https://resizing.flixster.com/9zjsaOUNtZi1naC56p7hu1fhSgY=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vYWQwMjJkMWEtMDQ4MC00NjhiLTg1MDMtOTEwNDkzNzA0ODE0LmpwZw==\"\n                alt=\"Mr. &amp; Mrs. Smith poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Mr. &amp; Mrs. Smith trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"b169bd05-c668-30cb-9150-29b86bc64803\"\n                  data-mpx-id=\"2298768451930\"\n                  data-position=\"9\"\n                  data-public-id=\"9F3qhqJTDcaz\"\n                  data-title=\"Mr. &amp; Mrs. Smith\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Mr. &amp; Mrs. Smith</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/mr_and_mrs_smith_2024/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"90\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Mr. &amp; Mrs. Smith</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"b169bd05-c668-30cb-9150-29b86bc64803\" mediatype=\"TvSeason\" mediatitle=\"Mr. &amp; Mrs. Smith\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/lKrEE29msAbd7JroHIK_1HU92Ok=/206x305/v2/https://resizing.flixster.com/5z5HIB6IjgOF7fKJTMJQ4GT4m9c=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vZTNlOTRkYjUtNDllOS00ZDgwLTk2ZGYtNWVlYjM1ZmZkYzg0LmpwZw==\"\n                alt=\"True Detective poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play True Detective trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"90a18737-d692-3613-aeb9-451eece204e3\"\n                  data-mpx-id=\"2299949123819\"\n                  data-position=\"10\"\n                  data-public-id=\"UCYIGn_7rH1m\"\n                  data-title=\"True Detective\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">True Detective</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/true_detective/s04\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"92\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">True Detective</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"90a18737-d692-3613-aeb9-451eece204e3\" mediatype=\"TvSeason\" mediatitle=\"True Detective\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/j-gVLoqYBOnJweIMVdSbdBeS11c=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p26111660_b_v13_aa.jpg\"\n                alt=\"Abbott Elementary poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Abbott Elementary trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"e7bcf37c-8ea1-39ed-84d2-474ed80885ac\"\n                  data-mpx-id=\"2305958467669\"\n                  data-position=\"11\"\n                  data-public-id=\"ZOa4VWvSMVRq\"\n                  data-title=\"Abbott Elementary\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Abbott Elementary</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/abbott_elementary/s03\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"100\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Abbott Elementary</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"e7bcf37c-8ea1-39ed-84d2-474ed80885ac\" mediatype=\"TvSeason\" mediatitle=\"Abbott Elementary\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/oRGkgfTxqNb9m42PSD4KAWifDYQ=/206x305/v2/https://resizing.flixster.com/ko-_Mu7TbP4u5Nj7BLuQbPWqhVI=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vNTg5OTAxMzQtZmQxYS00ZTVhLThkZmYtMDc1ZDdlMTIyMTQ2LnBuZw==\"\n                alt=\"Masters of the Air poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Masters of the Air trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"14bc9e1f-2e6d-358b-a9a0-286b7fa60b09\"\n                  data-mpx-id=\"2299154499576\"\n                  data-position=\"12\"\n                  data-public-id=\"0ta3UeSfKyPf\"\n                  data-title=\"Masters of the Air\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Masters of the Air</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/masters_of_the_air/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"87\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Masters of the Air</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"14bc9e1f-2e6d-358b-a9a0-286b7fa60b09\" mediatype=\"TvSeason\" mediatitle=\"Masters of the Air\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/tCHWvxYSA3HDouIumbh3FoGjeIQ=/206x305/v2/https://resizing.flixster.com/1mzoqCTb4Jc3hssZ6KjJrafrGrE=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vZTIwMDMyOWUtNDU5OC00OWY1LTk5NDAtMWI3MTNhN2M0Yzg5LmpwZw==\"\n                alt=\"Griselda poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Griselda trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"1288e519-1749-3d49-8715-db4bb5ae8704\"\n                  data-mpx-id=\"2288266307829\"\n                  data-position=\"13\"\n                  data-public-id=\"nwBLKhM06UA_\"\n                  data-title=\"Griselda\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Griselda</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/griselda/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"87\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Griselda</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"1288e519-1749-3d49-8715-db4bb5ae8704\" mediatype=\"TvSeason\" mediatitle=\"Griselda\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/f6b1OVNRyR8k08bfY_hyMX1Sp-E=/206x305/v2/https://resizing.flixster.com/2i1kai5kwx8F-r2ysc1ik1bFOi8=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vMGU5OTQ2YzgtZmQ1Zi00N2U3LTk3NmUtM2U2MjUzZDA4ZDA3LmpwZw==\"\n                alt=\"Expats poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Expats trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"93715749-8bd8-3eba-8a3b-f5a9db5d8306\"\n                  data-mpx-id=\"2293847619879\"\n                  data-position=\"14\"\n                  data-public-id=\"RUFpDAXeYqVM\"\n                  data-title=\"Expats\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Expats</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/expats/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"83\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Expats</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"93715749-8bd8-3eba-8a3b-f5a9db5d8306\" mediatype=\"TvSeason\" mediatitle=\"Expats\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/Vja5QSE24b-XmQM0k9nkxLbJqCk=/206x305/v2/https://resizing.flixster.com/MuyfECj-Qu9el_BA25LlbMRMlpE=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2VjOTVkZTc3LTE0NWYtNGY4MC05ZjdlLTcxOTE2MGViNDBmMy5qcGc=\"\n                alt=\"The Underdoggs poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Underdoggs trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"4c19614a-fa82-3576-baaa-4fb2608a8263\"\n                  data-mpx-id=\"2290377283800\"\n                  data-position=\"15\"\n                  data-public-id=\"FXgULp__eE3t\"\n                  data-title=\"The Underdoggs\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Underdoggs</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_underdoggs\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"40\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Underdoggs</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"4c19614a-fa82-3576-baaa-4fb2608a8263\" mediatype=\"Movie\" mediatitle=\"The Underdoggs\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/uiej2WESZPd6Kf-Hzxas7n4Hs18=/206x305/v2/https://resizing.flixster.com/HRvJsAWh73b8dsPTS54yuGbjk8k=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vNzI1ZmY0MzMtOTZjNC00YTJlLTgxY2QtYzg2OWEzMzA0Y2JlLmpwZw==\"\n                alt=\"Echo poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Echo trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"30ab1a20-1d65-32da-8242-ce37a119b07b\"\n                  data-mpx-id=\"2297832515921\"\n                  data-position=\"16\"\n                  data-public-id=\"_OCBWSti_Hbk\"\n                  data-title=\"Echo\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Echo</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/echo/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"70\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Echo</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"30ab1a20-1d65-32da-8242-ce37a119b07b\" mediatype=\"TvSeason\" mediatitle=\"Echo\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/RNLoHIfPolODu5kf0TRwThRgUpw=/206x305/v2/https://resizing.flixster.com/yhSMR7wi7o5kRjjrQb4Yo6zTCHM=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vNmMzZDU3MDktNzkxOC00ZmZkLWIxMjctNTdlMTY2ZGQxODljLmpwZw==\"\n                alt=\"Ted poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Ted trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"30839a2e-ebd3-3dbf-b587-cf7d1e712f6f\"\n                  data-mpx-id=\"2287937603516\"\n                  data-position=\"17\"\n                  data-public-id=\"KSzX2lxsRQ1R\"\n                  data-title=\"Ted\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Ted</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/ted/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"73\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Ted</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"30839a2e-ebd3-3dbf-b587-cf7d1e712f6f\" mediatype=\"TvSeason\" mediatitle=\"Ted\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/9ksb0eFoytUoT86OohQBu83lnI0=/206x305/v2/https://resizing.flixster.com/QxuXNaDPg5NQX_DPml6C0zV1A5E=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZmMDhiMTk1LTc5MzMtNGQ0OS04NTNiLTY2MWEwZDBkYjRlMi5qcGc=\"\n                alt=\"Maestro poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Maestro trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"132d6f06-45c4-4730-b0e9-a620e464eee9\"\n                  data-mpx-id=\"2276656707873\"\n                  data-position=\"18\"\n                  data-public-id=\"1d6iYY2WOdSh\"\n                  data-title=\"Maestro\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Maestro</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/maestro_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"79\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Maestro</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"132d6f06-45c4-4730-b0e9-a620e464eee9\" mediatype=\"Movie\" mediatitle=\"Maestro\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/9OhWEw1VIc2OepA63GYc45GXA2o=/206x305/v2/https://resizing.flixster.com/EyjgA7ILgI4ymEufJXCku8GS8J0=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vODVhMzJhMzctYjNjNS00NzEyLTgwOGYtZTc5YjMwOTY5ZmNhLmpwZw==\"\n                alt=\"Dr. Death poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Dr. Death trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"6f305420-e937-35a6-9328-da9dc4e2ba22\"\n                  data-mpx-id=\"2287569987823\"\n                  data-position=\"19\"\n                  data-public-id=\"QhP2THTdmZoy\"\n                  data-title=\"Dr. Death\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Dr. Death</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/dr_death/s02\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"80\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Dr. Death</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"6f305420-e937-35a6-9328-da9dc4e2ba22\" mediatype=\"TvSeason\" mediatitle=\"Dr. Death\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ccFzd0COvv7YGzbXN_8yX8r5zJ0=/206x305/v2/https://resizing.flixster.com/4D7Ql-AqzjmO1gPAObdYso4YKAw=/ems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vZDdlNDczYzgtOTM1OC00ZWU3LTk0NDQtMGRmNGRmYjY5ZmRmLmpwZw==\"\n                alt=\"The Brothers Sun poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Brothers Sun trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"tvSeason\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ca4e9542-d1cb-308e-b7d3-9c2bbd85a781\"\n                  data-mpx-id=\"2290253379738\"\n                  data-position=\"20\"\n                  data-public-id=\"GOISrTiWTgyT\"\n                  data-title=\"The Brothers Sun\"\n                  data-track=\"poster\"\n                  data-type=\"TvSeason\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-cfp\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Brothers Sun</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/tv/the_brothers_sun/s01\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"84\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Brothers Sun</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ca4e9542-d1cb-308e-b7d3-9c2bbd85a781\" mediatype=\"TvSeason\" mediatitle=\"The Brothers Sun\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n\n      <button slot=\"scroll-right\">\n        <rt-icon slot=\"icon-arrow-right\" image icon=\"right-chevron\"></rt-icon>\n      </button>\n      \n    </tiles-carousel-responsive-deprecated>\n  </section>\n\n</div>\n\n\n        \n    \n        <div class=\"layout media-lists\">\n\n  <div class=\"layout__column layout__column--main\">\n    \n      <div\n    class=\"ordered-layout__list ordered-layout__list--score\"\n    data-ad=\"featuredMedia\" \n    data-PageHomeManager=\"scoresList\"\n    hidden\n>\n</div>\n    \n    <div\n      class=\"ordered-layout__scores-wrap\"\n      data-PageHomeManager=\"scoresListWrapper\"\n    >\n\n      \n      \n\n      \n      <div\n        class=\"ordered-layout__list ordered-layout__list--score\"\n        data-curation=\"rt-hp-text-list-popular-streaming-movies\"\n        data-PageHomeManager=\"scoresList\"\n      >\n\n        \n  \n  \n    <section class=\"dynamic-text-list \">\n        <text-list skeleton=\"panel\">\n            <h2 slot=\"header\">Popular Streaming Movies</h2>\n            \n                <a slot=\"view-all\" href=\"https://www.rottentomatoes.com/browse/movies_at_home/sort:popular\" class=\"dynamic-text-list__see-all-link a--short\" hidden>View all</a>\n            \n            \n            \n                <div slot=\"streaming-links\" class=\"dynamic-text-list__streaming-links\">\n                    <a id=\"vudu-affililate-link\" class=\"p--small\" href=\"/browse/movies_at_home/affiliates:vudu\">Vudu</a> |\n                    <a id=\"netflix-affiliate-link\" class=\"p--small\" href=\"/browse/movies_at_home/affiliates:netflix\">Netflix</a> |\n                    <a id=\"amazon-affiliate-link\" class=\"p--small\" href=\"/browse/movies_at_home/affiliates:amazon_prime\">Prime Video</a> |\n                    <a id=\"hbo-affiliate-link\" class=\"p--small\" href=\"/browse/movies_at_home/affiliates:max_us\">Max</a> |\n                    <a id=\"all-affiliates-link\" class=\"p--small\" href=\"/browse/movies_at_home\">More...</a>\n                </div>\n            \n            <ul slot=\"list-items\">\n                \n                    <li>\n                        <a href=\"/m/dune_2021\">\n                            <span class=\"dynamic-text-list__item-title\">Dune</span>\n                        </a>\n                        <a href=\"/m/dune_2021\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    83%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/the_zone_of_interest\">\n                            <span class=\"dynamic-text-list__item-title\">The Zone of Interest</span>\n                        </a>\n                        <a href=\"/m/the_zone_of_interest\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    93%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/anyone_but_you_2023\">\n                            <span class=\"dynamic-text-list__item-title\">Anyone But You</span>\n                        </a>\n                        <a href=\"/m/anyone_but_you_2023\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__rotten\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    53%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/double_blind\">\n                            <span class=\"dynamic-text-list__item-title\">Double Blind</span>\n                        </a>\n                        <a href=\"/m/double_blind\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    100%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/the_iron_claw_2023\">\n                            <span class=\"dynamic-text-list__item-title\">The Iron Claw</span>\n                        </a>\n                        <a href=\"/m/the_iron_claw_2023\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    89%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/the_beekeeper_2024\">\n                            <span class=\"dynamic-text-list__item-title\">The Beekeeper</span>\n                        </a>\n                        <a href=\"/m/the_beekeeper_2024\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    71%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/mean_girls_2024\">\n                            <span class=\"dynamic-text-list__item-title\">Mean Girls</span>\n                        </a>\n                        <a href=\"/m/mean_girls_2024\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    70%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/american_fiction\">\n                            <span class=\"dynamic-text-list__item-title\">American Fiction</span>\n                        </a>\n                        <a href=\"/m/american_fiction\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    94%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/anatomy_of_a_fall\">\n                            <span class=\"dynamic-text-list__item-title\">Anatomy of a Fall</span>\n                        </a>\n                        <a href=\"/m/anatomy_of_a_fall\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    96%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/this_is_me_now_a_love_story\">\n                            <span class=\"dynamic-text-list__item-title\">This Is Me... Now: A Love Story</span>\n                        </a>\n                        <a href=\"/m/this_is_me_now_a_love_story\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    75%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n            </ul>\n        </text-list>\n    </section>\n\n\n\n\n        \n          \n\n  <ad-unit hidden unitdisplay=\"mobile\" unittype=\"interscroller\" noretry data-AdUnitManager=\"adUnit:error\">\n    <aside slot=\"adInject\" class=\"center mobile-interscroller\"></aside>\n  </ad-unit>\n\n\n        \n\n      </div>\n      \n      <div\n        class=\"ordered-layout__list ordered-layout__list--score\"\n        data-curation=\"rt-hp-text-list-most-popular-tv-on-rt\"\n        data-PageHomeManager=\"scoresList\"\n      >\n\n        \n  \n  \n    <section class=\"dynamic-text-list \">\n        <text-list skeleton=\"panel\">\n            <h2 slot=\"header\">Most Popular TV on RT </h2>\n            \n                <a slot=\"view-all\" href=\"https://www.rottentomatoes.com/browse/tv_series_browse/sort:popular\" class=\"dynamic-text-list__see-all-link a--short\" hidden>View all</a>\n            \n            \n            \n            <ul slot=\"list-items\">\n                \n                    <li>\n                        <a href=\"/tv/shogun_2024/s01\">\n                            <span class=\"dynamic-text-list__item-title\">Shōgun</span>\n                        </a>\n                        <a href=\"/tv/shogun_2024/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    100%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/constellation/s01\">\n                            <span class=\"dynamic-text-list__item-title\">Constellation</span>\n                        </a>\n                        <a href=\"/tv/constellation/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    73%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/avatar_the_last_airbender_2024/s01\">\n                            <span class=\"dynamic-text-list__item-title\">Avatar: The Last Airbender</span>\n                        </a>\n                        <a href=\"/tv/avatar_the_last_airbender_2024/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    60%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/true_detective/s04\">\n                            <span class=\"dynamic-text-list__item-title\">True Detective</span>\n                        </a>\n                        <a href=\"/tv/true_detective/s04\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    92%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/one_day_2024/s01\">\n                            <span class=\"dynamic-text-list__item-title\">One Day</span>\n                        </a>\n                        <a href=\"/tv/one_day_2024/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__certified-fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    93%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/house_of_ninjas/s01\">\n                            <span class=\"dynamic-text-list__item-title\">House of Ninjas</span>\n                        </a>\n                        <a href=\"/tv/house_of_ninjas/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    100%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/a_killer_paradox/s01\">\n                            <span class=\"dynamic-text-list__item-title\">A Killer Paradox</span>\n                        </a>\n                        <a href=\"/tv/a_killer_paradox/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    100%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/resident_alien/s03\">\n                            <span class=\"dynamic-text-list__item-title\">Resident Alien</span>\n                        </a>\n                        <a href=\"/tv/resident_alien/s03\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/the_tourist/s02\">\n                            <span class=\"dynamic-text-list__item-title\">The Tourist</span>\n                        </a>\n                        <a href=\"/tv/the_tourist/s02\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    94%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/halo/s02\">\n                            <span class=\"dynamic-text-list__item-title\">Halo</span>\n                        </a>\n                        <a href=\"/tv/halo/s02\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    94%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n            </ul>\n        </text-list>\n    </section>\n\n\n\n\n        \n          \n\n  <ad-unit hidden unitdisplay=\"mobile\" unittype=\"sharethrough\" unittargeting=\"strnativekey=kNF58ebeAUneyUk61UVo2yLu;pos=bottom;\" data-AdUnitManager=\"adUnit:error\">\n    <div slot=\"adInject\"></div>\n  </ad-unit>\n\n\n        \n\n      </div>\n      \n      <div\n        class=\"ordered-layout__list ordered-layout__list--score\"\n        data-curation=\"rt-hp-text-list-new-tv-this-week\"\n        data-PageHomeManager=\"scoresList\"\n      >\n\n        \n  \n  \n    <section class=\"dynamic-text-list \">\n        <text-list skeleton=\"panel\">\n            <h2 slot=\"header\">New TV This Week</h2>\n            \n                <a slot=\"view-all\" href=\"https://www.rottentomatoes.com/browse/tv_series_browse/sort:newest\" class=\"dynamic-text-list__see-all-link a--short\" hidden>What&#39;s on Tonight</a>\n            \n            \n            \n            <ul slot=\"list-items\">\n                \n                    <li>\n                        <a href=\"/tv/the_second_best_hospital_in_the_galaxy/s01\">\n                            <span class=\"dynamic-text-list__item-title\">The Second Best Hospital in The Galaxy</span>\n                        </a>\n                        <a href=\"/tv/the_second_best_hospital_in_the_galaxy/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    83%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/constellation/s01\">\n                            <span class=\"dynamic-text-list__item-title\">Constellation</span>\n                        </a>\n                        <a href=\"/tv/constellation/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    73%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/star_wars_the_bad_batch/s03\">\n                            <span class=\"dynamic-text-list__item-title\">Star Wars: The Bad Batch</span>\n                        </a>\n                        <a href=\"/tv/star_wars_the_bad_batch/s03\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    82%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/avatar_the_last_airbender_2024/s01\">\n                            <span class=\"dynamic-text-list__item-title\">Avatar: The Last Airbender</span>\n                        </a>\n                        <a href=\"/tv/avatar_the_last_airbender_2024/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__fresh\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium \">\n                                \n                                    60%\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/can_i_tell_you_a_secret/s01\">\n                            <span class=\"dynamic-text-list__item-title\">Can I Tell You A Secret?</span>\n                        </a>\n                        <a href=\"/tv/can_i_tell_you_a_secret/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/mike_epps_ready_to_sell_out\">\n                            <span class=\"dynamic-text-list__item-title\">Mike Epps: Ready to Sell Out</span>\n                        </a>\n                        <a href=\"/m/mike_epps_ready_to_sell_out\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/last_week_tonight_with_john_oliver/s11\">\n                            <span class=\"dynamic-text-list__item-title\">Last Week Tonight With John Oliver</span>\n                        </a>\n                        <a href=\"/tv/last_week_tonight_with_john_oliver/s11\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/tv/james_brown_say_it_loud/s01\">\n                            <span class=\"dynamic-text-list__item-title\">James Brown: Say It Loud</span>\n                        </a>\n                        <a href=\"/tv/james_brown_say_it_loud/s01\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/rory_scovel_religion_sex_and_a_few_things_in_between\">\n                            <span class=\"dynamic-text-list__item-title\">Rory Scovel: Religion, Sex, and a Few Things In Between</span>\n                        </a>\n                        <a href=\"/m/rory_scovel_religion_sex_and_a_few_things_in_between\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n                    <li>\n                        <a href=\"/m/jenny_slate_seasoned_professional\">\n                            <span class=\"dynamic-text-list__item-title\">Jenny Slate: Seasoned Professional</span>\n                        </a>\n                        <a href=\"/m/jenny_slate_seasoned_professional\" class=\"dynamic-text-list__tomatometer-group\">\n                            <span slot=\"tomatometer-icon\" class=\"icon icon--tiny icon__tomatometer-empty\"></span>\n                            <span slot=\"tomatometer-value\" class=\"b--medium dynamic-text-list__no-score\">\n                                \n                                    - -\n                                \n                            </span>\n                        </a>\n                    </li>\n                \n            </ul>\n        </text-list>\n    </section>\n\n\n\n\n        \n          \n\n  <ad-unit hidden unitdisplay=\"mobile\" unittype=\"mboxadone\" data-AdUnitManager=\"adUnit:error\">\n    <div slot=\"adInject\" class=\"rectangle_ad mobile center\"></div>\n  </ad-unit>\n  \n\n        \n\n      </div>\n      \n    </div>\n\n    <div class=\"layout__column layout__column--sidebar hide\">\n      <ad-unit hidden unitdisplay=\"desktop,mobile\" unittype=\"featuredmediaone\">\n        <div slot=\"adInject\"></div>\n      </ad-unit>\n\n      <ad-unit hidden unitdisplay=\"desktop,mobile\" unittype=\"featuredmediatwo\">\n        <div slot=\"adInject\"></div>\n      </ad-unit>\n    </div>\n  </div>\n\n  <aside class=\"adColumn col-sm-7 hidden-xs\">\n    <div class=\"adColumn__content\">\n      <ad-unit hidden unitdisplay=\"desktop\" unittype=\"topmulti\" showadlink data-AdUnitManager=\"adUnit:error\">\n        <div slot=\"adInject\"></div>\n      </ad-unit>\n    </div>\n  </aside>\n\n</div>\n\n\n        \n    \n        <div class=\"ordered-layout__list ordered-layout__list--carousel\" data-curation=\"rt-hp-poster-list-streaming-service-2\">\n  \n  \n  <section class=\"dynamic-poster-list\" data-qa=\"dynamic-poster-list\">\n    <div class=\"dynamic-poster-list__header-container\">\n      <div>\n        \n          <h2 data-qa=\"title\">Popular In Theaters</h2>\n        \n\n        \n          <a href=\"https://www.rottentomatoes.com/browse/movies_in_theaters/sort:popular\" class=\"a--short\" data-track=\"showmore\">View all</a>\n        \n      </div>\n\n      \n        <h3 class=\"p\">Availability may vary, check your <a href=\"https://www.fandango.com/movies-in-theaters\">local showtimes</a> for details.</h3>\n      \n    </div>\n    \n    \n\n    <tiles-carousel-responsive-deprecated skeleton=\"panel\">\n\n      <button slot=\"scroll-left\">\n        <rt-icon slot=\"icon-arrow-left\" image icon=\"left-chevron\"></rt-icon>\n      </button>\n\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/UHX6rqBEKFrtyEGImsdbsJqdw5U=/206x305/v2/https://resizing.flixster.com/sutljIrYjy_CppdngrSZTk1V4bI=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2RiZmY2NGJjLWI2NjEtNDkzNS04ODdmLTNhYmViNDUxOTY4Mi5qcGc=\"\n                alt=\"Argylle poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Argylle trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"9daad3be-9340-4e97-a2e4-6fc4d1aa0ea3\"\n                  data-mpx-id=\"2267784771776\"\n                  data-position=\"1\"\n                  data-public-id=\"LPieoRGLTWGz\"\n                  data-title=\"Argylle\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Argylle</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/argylle\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"33\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Argylle</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"9daad3be-9340-4e97-a2e4-6fc4d1aa0ea3\" mediatype=\"Movie\" mediatitle=\"Argylle\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/oYlkLSrl8Trw21aF4xyAX3vvsgg=/206x305/v2/https://resizing.flixster.com/MA1jApUB2_khJgmMVN-0VOseqrA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzRlZGUyZmRiLWViMDQtNDVmZC1iOTI5LTE2NmJhMzIzM2NhNy5qcGc=\"\n                alt=\"Lisa Frankenstein poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Lisa Frankenstein trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"f1cf522b-9e76-4ab3-855b-01b0cc6750d6\"\n                  data-mpx-id=\"2296941123943\"\n                  data-position=\"2\"\n                  data-public-id=\"PPmZzVlEfg8o\"\n                  data-title=\"Lisa Frankenstein\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Lisa Frankenstein</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/lisa_frankenstein\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"51\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Lisa Frankenstein</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"f1cf522b-9e76-4ab3-855b-01b0cc6750d6\" mediatype=\"Movie\" mediatitle=\"Lisa Frankenstein\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/nwY_yVsKRdvlDMJVmyGkPOTC2ZI=/206x305/v2/https://resizing.flixster.com/G2ypcmeD3YeumP2nvKiEmO5XQok=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2Y5MmJmNTk0LTFjNGEtNDVhNC1iNjI3LTFmNTVhYjg1ODc5Yy5qcGc=\"\n                alt=\"The Beekeeper poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Beekeeper trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"5fc1be00-2af0-3cc2-8df0-c42117063cee\"\n                  data-mpx-id=\"2269628483954\"\n                  data-position=\"3\"\n                  data-public-id=\"nnlgWnhWa2_i\"\n                  data-title=\"The Beekeeper\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Beekeeper</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_beekeeper_2024\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"71\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Beekeeper</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"5fc1be00-2af0-3cc2-8df0-c42117063cee\" mediatype=\"Movie\" mediatitle=\"The Beekeeper\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ZJ5aqScAhzuxf3-3QdnKS3h0TC4=/206x305/v2/https://resizing.flixster.com/Bx2OFTZyXMQCB30_E6EmiA52wZo=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2ZiMzI0ODJhLTZmNzYtNDNkZC04MjdhLTBlODVhOTgzNzQ2Zi5qcGc=\"\n                alt=\"Wonka poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Wonka trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"25ad8783-00db-3060-9a99-c7b8f94d8fb5\"\n                  data-mpx-id=\"2291249731916\"\n                  data-position=\"4\"\n                  data-public-id=\"ae_I1_hRmoK1\"\n                  data-title=\"Wonka\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Wonka</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/wonka\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"82\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Wonka</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"25ad8783-00db-3060-9a99-c7b8f94d8fb5\" mediatype=\"Movie\" mediatitle=\"Wonka\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/8F6mQ51qaPQHm1UvOBjMV-2VaGQ=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p24497638_p_v8_af.jpg\"\n                alt=\"Migration poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Migration trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ed3f9fd3-986f-3fd5-b51b-0ecfe4b97894\"\n                  data-mpx-id=\"2282382403859\"\n                  data-position=\"5\"\n                  data-public-id=\"XBwXHoYDN0oR\"\n                  data-title=\"Migration\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Migration</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/migration_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"72\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Migration</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ed3f9fd3-986f-3fd5-b51b-0ecfe4b97894\" mediatype=\"Movie\" mediatitle=\"Migration\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ilFKzJO9UyOdgFs9L7Y7-T-iKgg=/206x305/v2/https://resizing.flixster.com/JdMayYRDBiWLQAcfMSIhgpddN20=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzNkNTI4ODdiLTAyYTQtNGMxYS1hNGEwLTYzNDMwM2JjZDIwYi5qcGc=\"\n                alt=\"Anyone But You poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Anyone But You trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"0b0585a0-d887-33ff-baba-0c39ef39a38c\"\n                  data-mpx-id=\"2283792451756\"\n                  data-position=\"6\"\n                  data-public-id=\"9lqLEx1QtxwG\"\n                  data-title=\"Anyone But You\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Anyone But You</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/anyone_but_you_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"negative\"\n                  criticsscore=\"53\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Anyone But You</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"0b0585a0-d887-33ff-baba-0c39ef39a38c\" mediatype=\"Movie\" mediatitle=\"Anyone But You\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/_g2e2q0Y8O9qNz7cBZ_KHEvp_R8=/206x305/v2/https://resizing.flixster.com/V_BDzhs2rL-tPIj6fv6f-G7gpGM=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzAxMzFmMjk3LTNlYjQtNDM2MC05Y2QzLTdlOWIyN2NhMDZiNS5qcGc=\"\n                alt=\"The Chosen: Season 4 - Episodes 4-6 poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Chosen: Season 4 - Episodes 4-6 trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"1389f8c1-ab40-4497-89db-6e2ea505c847\"\n                  data-mpx-id=\"2309070403689\"\n                  data-position=\"7\"\n                  data-public-id=\"6_G5keu2k5tM\"\n                  data-title=\"The Chosen: Season 4 - Episodes 4-6\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Chosen: Season 4 - Episodes 4-6</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_chosen_season_4_episodes_4_6\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"\"\n                  criticsscore=\"\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Chosen: Season 4 - Episodes 4-6</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"1389f8c1-ab40-4497-89db-6e2ea505c847\" mediatype=\"Movie\" mediatitle=\"The Chosen: Season 4 - Episodes 4-6\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/kA6-FdcKblmi2o2ayI8Eog2Kzcs=/206x305/v2/https://resizing.flixster.com/0YWXiIrzIIikzllZUpKsCoHJVFY=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzQxMzU5NGYyLTA5N2MtNDI0MS04YTI5LWNkMTg3NTZlMTU3MC5qcGc=\"\n                alt=\"Mean Girls poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Mean Girls trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"b32c9a6e-ad44-30aa-9aa6-29d69889c552\"\n                  data-mpx-id=\"2296576067692\"\n                  data-position=\"8\"\n                  data-public-id=\"yhuJboRJ1ed_\"\n                  data-title=\"Mean Girls\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Mean Girls</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/mean_girls_2024\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"70\"\n                  \n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Mean Girls</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"b32c9a6e-ad44-30aa-9aa6-29d69889c552\" mediatype=\"Movie\" mediatitle=\"Mean Girls\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/9cA15MFFCoFW0NPFlVue7pVHF0Q=/206x305/v2/https://resizing.flixster.com/gcRn4_emLo1Iz5ndbvUOKDYq35c=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzdhYTI2NDJkLTU5YTYtNDNkOS05ZWQxLWZiNjFlOTZmYjZlZS5qcGc=\"\n                alt=\"Dune poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Dune trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"f7c22bab-5d5e-3b2e-a8a6-bd138df977ee\"\n                  data-mpx-id=\"1959451203729\"\n                  data-position=\"9\"\n                  data-public-id=\"RqoBQ2sbhJCS\"\n                  data-title=\"Dune\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Dune</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/dune_2021\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"83\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Dune</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"f7c22bab-5d5e-3b2e-a8a6-bd138df977ee\" mediatype=\"Movie\" mediatitle=\"Dune\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/D6ibeGMz_eOsT_VtX73q5zUwcjg=/206x305/v2/https://resizing.flixster.com/Kes35WjbggKb9o6T7JG1nBGE2RE=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2M4ODA3YzJjLTA5YWItNDFhZi1hNDc5LTc0MWU0NWMxYTU3ZS5qcGc=\"\n                alt=\"American Fiction poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play American Fiction trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"cb28c837-b943-4ed8-9e4a-b1db47fcc59a\"\n                  data-mpx-id=\"2293158467530\"\n                  data-position=\"10\"\n                  data-public-id=\"MuYu9Fxc5b91\"\n                  data-title=\"American Fiction\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-2\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">American Fiction</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/american_fiction\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"94\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">American Fiction</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"cb28c837-b943-4ed8-9e4a-b1db47fcc59a\" mediatype=\"Movie\" mediatitle=\"American Fiction\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n\n      <button slot=\"scroll-right\">\n        <rt-icon slot=\"icon-arrow-right\" image icon=\"right-chevron\"></rt-icon>\n      </button>\n      \n    </tiles-carousel-responsive-deprecated>\n  </section>\n\n</div>\n\n\n        \n    \n        <div class=\"ordered-layout__list ordered-layout__list--carousel\" data-curation=\"rt-hp-poster-list-popular-in-theaters\">\n  \n  \n  <section class=\"dynamic-poster-list\" data-qa=\"dynamic-poster-list\">\n    <div class=\"dynamic-poster-list__header-container--hide-h3\">\n      <div>\n        \n          <h2 data-qa=\"title\">Oscar Nominations 2024</h2>\n        \n\n        \n          <a href=\"https://editorial.rottentomatoes.com/article/oscar-nominations-2024-complete-list-of-the-nominees/\" class=\"a--short\" data-track=\"showmore\">View all</a>\n        \n      </div>\n\n      \n    </div>\n    \n    \n\n    <tiles-carousel-responsive-deprecated skeleton=\"panel\">\n\n      <button slot=\"scroll-left\">\n        <rt-icon slot=\"icon-arrow-left\" image icon=\"left-chevron\"></rt-icon>\n      </button>\n\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/D6ibeGMz_eOsT_VtX73q5zUwcjg=/206x305/v2/https://resizing.flixster.com/Kes35WjbggKb9o6T7JG1nBGE2RE=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2M4ODA3YzJjLTA5YWItNDFhZi1hNDc5LTc0MWU0NWMxYTU3ZS5qcGc=\"\n                alt=\"American Fiction poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play American Fiction trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"cb28c837-b943-4ed8-9e4a-b1db47fcc59a\"\n                  data-mpx-id=\"2293158467530\"\n                  data-position=\"1\"\n                  data-public-id=\"MuYu9Fxc5b91\"\n                  data-title=\"American Fiction\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">American Fiction</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/american_fiction\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"94\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">American Fiction</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"cb28c837-b943-4ed8-9e4a-b1db47fcc59a\" mediatype=\"Movie\" mediatitle=\"American Fiction\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/t5BD6TpneSZ3SCKK-bugepM9iX8=/206x305/v2/https://resizing.flixster.com/DiduaaJKONgMBcwEdDgLlFGE7Vo=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2JmMGYzZGMxLWVjNmItNGI1ZS05ODAxLTkwY2U4ZGQyMzI5Ni5qcGc=\"\n                alt=\"Anatomy of a Fall poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Anatomy of a Fall trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"621955c8-b3e9-46db-b4bc-ca3e8718651d\"\n                  data-mpx-id=\"2255937091838\"\n                  data-position=\"2\"\n                  data-public-id=\"buunTQ4_LEN_\"\n                  data-title=\"Anatomy of a Fall\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Anatomy of a Fall</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/anatomy_of_a_fall\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"96\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Anatomy of a Fall</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"621955c8-b3e9-46db-b4bc-ca3e8718651d\" mediatype=\"Movie\" mediatitle=\"Anatomy of a Fall\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/J4xdPjUuyUwx3WCQiA9feOp4_-4=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p13472534_p_v12_ah.jpg\"\n                alt=\"Barbie poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Barbie trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"317d7155-533b-396f-8c1c-34a22e2e8ef9\"\n                  data-mpx-id=\"2213004355920\"\n                  data-position=\"3\"\n                  data-public-id=\"cXyBitgq42uA\"\n                  data-title=\"Barbie\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Barbie</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/barbie\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"88\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Barbie</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"317d7155-533b-396f-8c1c-34a22e2e8ef9\" mediatype=\"Movie\" mediatitle=\"Barbie\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/a46LuVRnF690tYOTZDFHFU174no=/206x305/v2/https://resizing.flixster.com/Gfe3Lf75Qo5Pb0feNQ58BzwVBOA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzQ4N2I3NGFjLWY3NDAtNDVlMS05ODFmLTNmYjA5ZmE3NTViNi5qcGc=\"\n                alt=\"The Holdovers poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Holdovers trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"65021aba-fbbf-3c55-b038-4d324afb1a96\"\n                  data-mpx-id=\"2246005315653\"\n                  data-position=\"4\"\n                  data-public-id=\"VYw_Dv95kzB8\"\n                  data-title=\"The Holdovers\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Holdovers</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_holdovers\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"97\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Holdovers</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"65021aba-fbbf-3c55-b038-4d324afb1a96\" mediatype=\"Movie\" mediatitle=\"The Holdovers\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/Nkywr3qkAo-G089ObPt_kqxPCkE=/206x305/v2/https://resizing.flixster.com/GGQKtXozu58SHWKH0Cz-5jQ9U38=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZhOWE1N2ZkLTY4MzgtNDA3Yi05MDEwLWQzN2QwMTFkZDdmNS5qcGc=\"\n                alt=\"Killers of the Flower Moon poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Killers of the Flower Moon trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ff9918ce-f29e-3e6c-a421-166c60742d9a\"\n                  data-mpx-id=\"2274223171759\"\n                  data-position=\"5\"\n                  data-public-id=\"aPc0naNE7pWp\"\n                  data-title=\"Killers of the Flower Moon\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Killers of the Flower Moon</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/killers_of_the_flower_moon\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"93\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Killers of the Flower Moon</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ff9918ce-f29e-3e6c-a421-166c60742d9a\" mediatype=\"Movie\" mediatitle=\"Killers of the Flower Moon\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/9ksb0eFoytUoT86OohQBu83lnI0=/206x305/v2/https://resizing.flixster.com/QxuXNaDPg5NQX_DPml6C0zV1A5E=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZmMDhiMTk1LTc5MzMtNGQ0OS04NTNiLTY2MWEwZDBkYjRlMi5qcGc=\"\n                alt=\"Maestro poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Maestro trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"132d6f06-45c4-4730-b0e9-a620e464eee9\"\n                  data-mpx-id=\"2276656707873\"\n                  data-position=\"6\"\n                  data-public-id=\"1d6iYY2WOdSh\"\n                  data-title=\"Maestro\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Maestro</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/maestro_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"79\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Maestro</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"132d6f06-45c4-4730-b0e9-a620e464eee9\" mediatype=\"Movie\" mediatitle=\"Maestro\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/5bbfOrn5Stku1HxlkK4ISYi2uQk=/206x305/v2/https://resizing.flixster.com/dV1vfa4w_dB4wzk7A_VzThWUWw8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzEyZDMyYjZmLThmNzAtNDliNC1hMjFmLTA2ZWY4M2UyMjJhMi5qcGc=\"\n                alt=\"Oppenheimer poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Oppenheimer trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"07d7f9a2-3fa1-342a-b6ca-27fd594e04c6\"\n                  data-mpx-id=\"2203597891941\"\n                  data-position=\"7\"\n                  data-public-id=\"PBIZNyiLd6kk\"\n                  data-title=\"Oppenheimer\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Oppenheimer</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/oppenheimer_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"93\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Oppenheimer</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"07d7f9a2-3fa1-342a-b6ca-27fd594e04c6\" mediatype=\"Movie\" mediatitle=\"Oppenheimer\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ip4filts4cV72q1fIzvmugV-Hrg=/206x305/v2/https://resizing.flixster.com/Rj36W7XfjR7FUlGiJBCMNfLpk5k=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzg5NjQ4NjQxLTI5MzktNDVlMy04NTU0LTEzZGJiYTZmNzRlNi5qcGc=\"\n                alt=\"Past Lives poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Past Lives trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"34f0e7cf-195e-463c-9d81-5f283cfd2e34\"\n                  data-mpx-id=\"2174828611580\"\n                  data-position=\"8\"\n                  data-public-id=\"h_N5NUMVrwPR\"\n                  data-title=\"Past Lives\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Past Lives</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/past_lives\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"96\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Past Lives</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"34f0e7cf-195e-463c-9d81-5f283cfd2e34\" mediatype=\"Movie\" mediatitle=\"Past Lives\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/t1AsBaA_GhqQDdLdMOswbCP0zF8=/206x305/v2/https://resizing.flixster.com/U_RT77J5o2EfMC-DdAc7Dm8CkKY=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzNmM2FiYmJhLTFjYTgtNDljOC04MjQ4LTU1Yjg0M2NkNTdmZC5qcGc=\"\n                alt=\"Poor Things poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Poor Things trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"4459a1b8-ec4a-4c13-8c31-b27464e1c6e2\"\n                  data-mpx-id=\"2286485059535\"\n                  data-position=\"9\"\n                  data-public-id=\"2K903RVKX_yr\"\n                  data-title=\"Poor Things\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Poor Things</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/poor_things\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"92\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Poor Things</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"4459a1b8-ec4a-4c13-8c31-b27464e1c6e2\" mediatype=\"Movie\" mediatitle=\"Poor Things\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/8pVzqrRSX8YRo2LLSWApkigR9fM=/206x305/v2/https://resizing.flixster.com/sK_6rOkR73t2sfxWzzu1MJY4e-E=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2RkMDcxNjExLWY2OGYtNGJlNS04OTNjLTdhNDA3OGIzZjA1NC5qcGc=\"\n                alt=\"The Zone of Interest poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Zone of Interest trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"865b81a4-aa57-4f52-b248-93d5cf3d7fe9\"\n                  data-mpx-id=\"2289444419724\"\n                  data-position=\"10\"\n                  data-public-id=\"CK_GRAT50hJp\"\n                  data-title=\"The Zone of Interest\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-popular-in-theaters\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Zone of Interest</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_zone_of_interest\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"93\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Zone of Interest</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"865b81a4-aa57-4f52-b248-93d5cf3d7fe9\" mediatype=\"Movie\" mediatitle=\"The Zone of Interest\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n\n      <button slot=\"scroll-right\">\n        <rt-icon slot=\"icon-arrow-right\" image icon=\"right-chevron\"></rt-icon>\n      </button>\n      \n    </tiles-carousel-responsive-deprecated>\n  </section>\n\n</div>\n\n\n        \n    \n        <div class=\"ordered-layout__list ordered-layout__list--carousel\" data-curation=\"rt-hp-poster-list-streaming-service-1\">\n  \n  \n  <section class=\"dynamic-poster-list\" data-qa=\"dynamic-poster-list\">\n    <div class=\"dynamic-poster-list__header-container--hide-h3\">\n      <div>\n        \n          <h2 data-qa=\"title\">Latest Certified Fresh Movies</h2>\n        \n\n        \n          <a href=\"https://www.rottentomatoes.com/browse/movies_in_theaters/critics:certified_fresh\" class=\"a--short\" data-track=\"showmore\">View all</a>\n        \n      </div>\n\n      \n    </div>\n    \n    \n\n    <tiles-carousel-responsive-deprecated skeleton=\"panel\">\n\n      <button slot=\"scroll-left\">\n        <rt-icon slot=\"icon-arrow-left\" image icon=\"left-chevron\"></rt-icon>\n      </button>\n\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/QwO-nRLkBjU8-BlAz7xHdvUvalE=/206x305/v2/https://resizing.flixster.com/PgHhmCKS3hR6GUsVNlC-vZ9d90I=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZhOTA0OTIzLTEwNDctNDhkNS1iNTc3LTY3MjBmNDc5OGU1Mi5qcGc=\"\n                alt=\"Dune: Part Two poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Dune: Part Two trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"cecd223d-a20d-3268-bbef-9a4c847c673d\"\n                  data-mpx-id=\"2291543619909\"\n                  data-position=\"1\"\n                  data-public-id=\"3uVjDzzml2kM\"\n                  data-title=\"Dune: Part Two\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Dune: Part Two</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/dune_part_two\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Dune: Part Two</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"cecd223d-a20d-3268-bbef-9a4c847c673d\" mediatype=\"Movie\" mediatitle=\"Dune: Part Two\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/SONPTGE4JghdWGZ61cTC8zJMZAg=/206x305/v2/https://resizing.flixster.com/iU1-Ixt8qML5JqHKpOIJnbC1UGI=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2JiYmYyMmIxLWYxNDctNDU5NS04NGNmLTAwMzE5MWZlYTZjZi5qcGc=\"\n                alt=\"Monolith poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Monolith trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"b879d165-8727-4793-88f7-23b6f7a8063a\"\n                  data-mpx-id=\"2298164803806\"\n                  data-position=\"2\"\n                  data-public-id=\"0__toePYIydq\"\n                  data-title=\"Monolith\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Monolith</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/monolith_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"86\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Monolith</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"b879d165-8727-4793-88f7-23b6f7a8063a\" mediatype=\"Movie\" mediatitle=\"Monolith\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/the_greatest_night_in_pop\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/rhtZhvsN_YjdHck9V-wrmfUpyIQ=/206x305/v2/https://resizing.flixster.com/w1Fwp0xHnKw9IYWtRlRoTSDyVIA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzUwNjI4YmU1LWUzNzEtNDA2YS05MGJmLWRkOTk4YTkzNWM3NS5qcGc=\"\n                alt=\"The Greatest Night in Pop poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Greatest Night in Pop</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"d6d891d7-dc48-43a4-9ac4-d62eba9b9ab0\" mediatype=\"Movie\" mediatitle=\"The Greatest Night in Pop\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/c94aTda4xFDtSu3i_-KS9F36mOE=/206x305/v2/https://resizing.flixster.com/Yr1tMeVwrcXMmyOod8cPnMls32c=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzMzOWE2OWViLThkOTQtNDZjYS1iNTRkLTBkNGViOTRhNGNmMy5qcGc=\"\n                alt=\"Clock poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Clock trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"beda2afc-908f-3462-bb2f-c72ff81f8938\"\n                  data-mpx-id=\"2188073539974\"\n                  data-position=\"4\"\n                  data-public-id=\"JMf5css8ESPQ\"\n                  data-title=\"Clock\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Clock</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/clock_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"80\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Clock</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"beda2afc-908f-3462-bb2f-c72ff81f8938\" mediatype=\"Movie\" mediatitle=\"Clock\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/s0vGiffmZ4jyzXfy6QsigxCFJVE=/206x305/v2/https://resizing.flixster.com/6Gd2kd2lv5K1d64ScD5k1rpwqdI=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzRkYmZkZDQzLTA5NWItNDhjOS1iMGU2LTFmMzE5ZjM2NzA2ZC5qcGc=\"\n                alt=\"Disco Boy poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Disco Boy trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"b0c175e5-b83e-444e-b3f0-542a6b725e81\"\n                  data-mpx-id=\"2292600387879\"\n                  data-position=\"5\"\n                  data-public-id=\"uweiKUIVkp_l\"\n                  data-title=\"Disco Boy\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Disco Boy</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/disco_boy\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"86\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Disco Boy</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"b0c175e5-b83e-444e-b3f0-542a6b725e81\" mediatype=\"Movie\" mediatitle=\"Disco Boy\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/DQ_5kqectRK9EleCUDZ_VNoM1Iw=/206x305/v2/https://resizing.flixster.com/8g4tjcyanJ_XioCMo1pJO5w2eOU=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzBkZWQxMjg0LTg1ZTktNDZiZi05ZWUyLTYwMzZiZjI5OTdiYy5qcGc=\"\n                alt=\"The Sweet East poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Sweet East trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"074d59e2-cea9-45a9-8dd3-1dde157b31df\"\n                  data-mpx-id=\"2278941251596\"\n                  data-position=\"6\"\n                  data-public-id=\"xNoA4huDF9H0\"\n                  data-title=\"The Sweet East\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Sweet East</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_sweet_east\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"78\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Sweet East</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"074d59e2-cea9-45a9-8dd3-1dde157b31df\" mediatype=\"Movie\" mediatitle=\"The Sweet East\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/IbHGd1JeHcf4YiETWdt_mMvxFWM=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p24838782_p_v13_aa.jpg\"\n                alt=\"Out of Darkness poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Out of Darkness trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"8da92b86-fb73-4dff-9897-5d44d5259fda\"\n                  data-mpx-id=\"2291682371820\"\n                  data-position=\"7\"\n                  data-public-id=\"Cw1hUiwwdgaJ\"\n                  data-title=\"Out of Darkness\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Out of Darkness</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/out_of_darkness_2022\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"84\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Out of Darkness</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"8da92b86-fb73-4dff-9897-5d44d5259fda\" mediatype=\"Movie\" mediatitle=\"Out of Darkness\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/-ef7UHP__75HHGbLyNpmO4NfTSQ=/206x305/v2/https://resizing.flixster.com/3g9tZnA26NUFtH2uaUW1V1LKPPU=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVkMTEzYTBiLTQ3NTYtNDkwMy1iOGQ3LTZmMTBkOWRlOWRlOC5qcGc=\"\n                alt=\"Orion and the Dark poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Orion and the Dark trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"49db9a9b-a028-37f6-86fb-5c98aae2748f\"\n                  data-mpx-id=\"2298873411945\"\n                  data-position=\"8\"\n                  data-public-id=\"dBiIIWc4VGNK\"\n                  data-title=\"Orion and the Dark\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Orion and the Dark</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/orion_and_the_dark\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"90\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Orion and the Dark</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"49db9a9b-a028-37f6-86fb-5c98aae2748f\" mediatype=\"Movie\" mediatitle=\"Orion and the Dark\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/5kjIpYqWBc7OeP3UhiE4f9sctIw=/206x305/v2/https://resizing.flixster.com/jJmvjxoYJ_PdBMrKXtqufHmLEbc=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2EyNWE0MTYwLTg2NjYtNDIzMy1iZTdjLWNkMTdjNGEwODdlMy5qcGc=\"\n                alt=\"Inside the Yellow Cocoon Shell poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Inside the Yellow Cocoon Shell trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c076dfdf-5f76-48aa-82a2-73ce26bd9887\"\n                  data-mpx-id=\"2291353155714\"\n                  data-position=\"9\"\n                  data-public-id=\"IvQDgapRC8FB\"\n                  data-title=\"Inside the Yellow Cocoon Shell\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Inside the Yellow Cocoon Shell</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/inside_the_yellow_cocoon_shell\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Inside the Yellow Cocoon Shell</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c076dfdf-5f76-48aa-82a2-73ce26bd9887\" mediatype=\"Movie\" mediatitle=\"Inside the Yellow Cocoon Shell\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/fitting_in_2023\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/KWY6LL83PwY6RxZow8yCbdG3Dsk=/206x305/v2/https://resizing.flixster.com/HgJYJqGbkyqb17jdSAfrj9E2_7w=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVlZjA0ZmViLTY0NTQtNDE3NC1iYzU5LTE5Y2Q5YjAzMDAzNy5qcGc=\"\n                alt=\"Fitting In poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"95\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Fitting In</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"071da7a6-cff6-34ad-aa0f-fc0fabdc3089\" mediatype=\"Movie\" mediatitle=\"Fitting In\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/HZvw6CZU9xDzrxaNjamgDrZYTPc=/206x305/v2/https://resizing.flixster.com/JDgsO5O8hd0B6vNkS9LILWwoT0o=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzc3NzY1NmM4LWRkNGYtNDBkNy05NDI1LWFiMTZkMjAwNjZlMi5qcGc=\"\n                alt=\"The Promised Land poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Promised Land trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"ffc7300e-1657-4115-98de-5037e2164865\"\n                  data-mpx-id=\"2292255811653\"\n                  data-position=\"11\"\n                  data-public-id=\"F7nu2ofjo3OU\"\n                  data-title=\"The Promised Land\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Promised Land</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_promised_land_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"96\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Promised Land</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"ffc7300e-1657-4115-98de-5037e2164865\" mediatype=\"Movie\" mediatitle=\"The Promised Land\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/kQBkJYE22DXYR8I-sr86_6taVnY=/206x305/v2/https://resizing.flixster.com/Ezj4S7Fd0LnxXVYVreljQBZoTLk=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzRiNDY1OTYzLWE4NGUtNGY0OS1hYjlkLTcwYmE4OGFmNGUxOC5wbmc=\"\n                alt=\"Butcher&#39;s Crossing poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Butcher&#39;s Crossing trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c404e371-798f-45ce-b545-b50715e0ec4b\"\n                  data-mpx-id=\"2264667203832\"\n                  data-position=\"12\"\n                  data-public-id=\"td_4_lGXxOh_\"\n                  data-title=\"Butcher&#39;s Crossing\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Butcher&#39;s Crossing</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/butchers_crossing\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"75\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Butcher&#39;s Crossing</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c404e371-798f-45ce-b545-b50715e0ec4b\" mediatype=\"Movie\" mediatitle=\"Butcher&#39;s Crossing\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/I7oV_juHFwxIfhjWSVJjAfxo-Vc=/206x305/v2/https://resizing.flixster.com/zSv3QTYScdat6tfcTtsAw1NpTVA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2NiMzVlNmY5LTA4OTktNDY2MC05MTU0LTk0NzVmNGU4OTk1Ny5qcGc=\"\n                alt=\"Self Reliance poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Self Reliance trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"f68d5cfc-b24c-3379-a407-826d63ad6011\"\n                  data-mpx-id=\"2289536067633\"\n                  data-position=\"13\"\n                  data-public-id=\"7Ele9EDl36V0\"\n                  data-title=\"Self Reliance\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Self Reliance</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/self_reliance\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"72\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Self Reliance</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"f68d5cfc-b24c-3379-a407-826d63ad6011\" mediatype=\"Movie\" mediatitle=\"Self Reliance\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/lsr-5LW5SqplNVtbKU74cVWHwQ4=/206x305/v2/https://resizing.flixster.com/rB_eKSR-s0ZPo8v6qQaGk4uRaWk=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzczZGU2MWQ5LTE4MmMtNDA5Mi1hODJlLWI1NTg0MzJiYTgwZi5qcGc=\"\n                alt=\"Sometimes I Think About Dying poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Sometimes I Think About Dying trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c0f64db0-6ba6-4a1b-b849-c784d4ad1658\"\n                  data-mpx-id=\"2281908291535\"\n                  data-position=\"14\"\n                  data-public-id=\"H9YJyfI1by_G\"\n                  data-title=\"Sometimes I Think About Dying\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Sometimes I Think About Dying</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/sometimes_i_think_about_dying_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"81\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Sometimes I Think About Dying</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c0f64db0-6ba6-4a1b-b849-c784d4ad1658\" mediatype=\"Movie\" mediatitle=\"Sometimes I Think About Dying\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ogzpdj1fGQJ-qOQUSnx0Rsp-bGk=/206x305/v2/https://resizing.flixster.com/dkaR8dOy_hboN3sSlVjuuh4vOb8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzUwMzAxZjZiLWIwYzUtNGFjMS1hNjE4LTdiYjI3ZWIxZDJkNi5qcGc=\"\n                alt=\"Good Grief poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Good Grief trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"14e87cf5-9d15-3f57-9307-e449ed3f2f33\"\n                  data-mpx-id=\"2289847363982\"\n                  data-position=\"15\"\n                  data-public-id=\"a4s5G9OrFGSc\"\n                  data-title=\"Good Grief\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Good Grief</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/good_grief_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"76\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Good Grief</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"14e87cf5-9d15-3f57-9307-e449ed3f2f33\" mediatype=\"Movie\" mediatitle=\"Good Grief\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/IWGGtfMdcGcgQ3e6OqdPgKGfqjA=/206x305/v2/https://resizing.flixster.com/1yI1GmGp3CvQQb0wGfYgW1L4Fg4=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzgzOGI0YWYyLWU3OTEtNDI3OC04MzRjLWQzZjJkNjAzYmNlNy5qcGc=\"\n                alt=\"Tótem poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Tótem trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"2fa0f74f-ad18-4edf-95df-36ca0bb24185\"\n                  data-mpx-id=\"2290662467854\"\n                  data-position=\"16\"\n                  data-public-id=\"REg7Ohbg_Xdy\"\n                  data-title=\"Tótem\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Tótem</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/totem_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"97\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Tótem</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"2fa0f74f-ad18-4edf-95df-36ca0bb24185\" mediatype=\"Movie\" mediatitle=\"Tótem\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/K_gKuaHA2NhBerlgsIvQNP3WpJI=/206x305/v2/https://resizing.flixster.com/2Q8k6gOFEwL77ms_dyW09JkyDrI=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzEyYWY4OTY3LTNkZTYtNGRjNS1hMzJmLWQ3NGU0MTFjYmUyZS5wbmc=\"\n                alt=\"The Settlers poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Settlers trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"70066245-6ee3-493d-851f-91c34f8680ec\"\n                  data-mpx-id=\"2291227203872\"\n                  data-position=\"17\"\n                  data-public-id=\"d1eyCxZk0kTN\"\n                  data-title=\"The Settlers\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Settlers</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_settlers_2023\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"93\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Settlers</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"70066245-6ee3-493d-851f-91c34f8680ec\" mediatype=\"Movie\" mediatitle=\"The Settlers\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/1w0K3Yg5LbN7NNgDraEvv-gXOE0=/206x305/v2/https://resizing.flixster.com/VJgxvJrGxP9bQibuLvXMxg9wvrc=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2FjMGJkYjJiLWYyNTEtNDA1ZC1iOWYwLWFmNzFjODdmNzY2Ni5qcGc=\"\n                alt=\"Anselm poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Anselm trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"1814e3f0-6270-4bcf-9c14-dba3324c6d77\"\n                  data-mpx-id=\"2263753283789\"\n                  data-position=\"18\"\n                  data-public-id=\"1CzbodSUUnIQ\"\n                  data-title=\"Anselm\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Anselm</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/anselm\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Anselm</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"1814e3f0-6270-4bcf-9c14-dba3324c6d77\" mediatype=\"Movie\" mediatitle=\"Anselm\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/-oZJ9aYeFrZrHhWqMzgEHtAe4u8=/206x305/v2/https://resizing.flixster.com/dO5kJm5CHM-rA7gmBUFf5-F4nSg=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzg0OWU3ZTBlLTFjZDQtNGM0OS05NGRmLTQ3NWYzMGRiYzg2Yi5qcGc=\"\n                alt=\"The Crime Is Mine poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Crime Is Mine trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"574b3c3d-067e-42d7-8509-cf8c97f21a5c\"\n                  data-mpx-id=\"2278969411512\"\n                  data-position=\"19\"\n                  data-public-id=\"dfXpDJQwZy6x\"\n                  data-title=\"The Crime Is Mine\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Crime Is Mine</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_crime_is_mine\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Crime Is Mine</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"574b3c3d-067e-42d7-8509-cf8c97f21a5c\" mediatype=\"Movie\" mediatitle=\"The Crime Is Mine\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/8QHRokhEugO-thw2M2YFFp5f0N8=/206x305/v2/https://resizing.flixster.com/qbZNSC5ALU0gM4B6PdFLar8tbp4=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzNiMmUzYmZiLTNiZjItNGYzMi1iMzgyLTI0MTBkMWNkZTY1MC5qcGc=\"\n                alt=\"Menus-Plaisirs Les Troisgros poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Menus-Plaisirs Les Troisgros trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"51ac435c-1a49-4e22-874b-487ed7619a90\"\n                  data-mpx-id=\"2272641091939\"\n                  data-position=\"20\"\n                  data-public-id=\"B7G5qRs8YzHU\"\n                  data-title=\"Menus-Plaisirs Les Troisgros\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-1\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Menus-Plaisirs Les Troisgros</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/menus_plaisirs_les_troisgros\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"100\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Menus-Plaisirs Les Troisgros</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"51ac435c-1a49-4e22-874b-487ed7619a90\" mediatype=\"Movie\" mediatitle=\"Menus-Plaisirs Les Troisgros\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n\n      <button slot=\"scroll-right\">\n        <rt-icon slot=\"icon-arrow-right\" image icon=\"right-chevron\"></rt-icon>\n      </button>\n      \n    </tiles-carousel-responsive-deprecated>\n  </section>\n\n</div>\n\n\n        \n    \n        <div class=\"ordered-layout__list ordered-layout__list--carousel\" data-curation=\"rt-hp-poster-list-streaming-service-4\">\n  \n  \n  <section class=\"dynamic-poster-list\" data-qa=\"dynamic-poster-list\">\n    <div class=\"dynamic-poster-list__header-container--hide-h3\">\n      <div>\n        \n          <h2 data-qa=\"title\">Best Black Movies of the 21st Century</h2>\n        \n\n        \n          <a href=\"https://editorial.rottentomatoes.com/guide/best-black-movies-21st-century/\" class=\"a--short\" data-track=\"showmore\">View all</a>\n        \n      </div>\n\n      \n    </div>\n    \n    \n\n    <tiles-carousel-responsive-deprecated skeleton=\"panel\">\n\n      <button slot=\"scroll-left\">\n        <rt-icon slot=\"icon-arrow-left\" image icon=\"left-chevron\"></rt-icon>\n      </button>\n\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/0PWkllKMdDrU9wQfe4p2HnkTfvo=/206x305/v2/https://resizing.flixster.com/gBrgxl755XtSC70b4NvP6D1DBa8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzI3ZGZjMzdjLTI5MDAtNDlhNS1iY2IxLWUyOWFiNzY0MTVmZS5qcGc=\"\n                alt=\"King Richard poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play King Richard trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"2ecfc419-4738-3e17-9a26-1545a1fec6b9\"\n                  data-mpx-id=\"1964519491612\"\n                  data-position=\"1\"\n                  data-public-id=\"M6Rq34ij2Xrz\"\n                  data-title=\"King Richard\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">King Richard</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/king_richard\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"90\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">King Richard</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"2ecfc419-4738-3e17-9a26-1545a1fec6b9\" mediatype=\"Movie\" mediatitle=\"King Richard\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/6gnj6NBzQAq9GBBgP9Hv4NVVlyw=/206x305/v2/https://resizing.flixster.com/4YRa5Vut6ZDw-m8VmGmAx0-ttcU=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzNiMmJmZWMxLWNiMjktNDE0OC05NmRiLTNmZjY4ZTY5OTY0Yi53ZWJw\"\n                alt=\"Bad Boys for Life poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Bad Boys for Life trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"262a9c51-54fb-3a7b-ba38-c8d8042ada8b\"\n                  data-mpx-id=\"1636386883734\"\n                  data-position=\"2\"\n                  data-public-id=\"QBd9o1Ctirmj\"\n                  data-title=\"Bad Boys for Life\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Bad Boys for Life</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/bad_boys_for_life\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"76\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Bad Boys for Life</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"262a9c51-54fb-3a7b-ba38-c8d8042ada8b\" mediatype=\"Movie\" mediatitle=\"Bad Boys for Life\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/love_and_basketball\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/LQHhVcm6d11v_GkDNq-sacgUBFk=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/NowShowing/23515/23515_aa.jpg\"\n                alt=\"Love &amp; Basketball poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"85\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Love &amp; Basketball</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"552bcc2e-fd65-3c99-abc7-5cc6837830b7\" mediatype=\"Movie\" mediatitle=\"Love &amp; Basketball\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/NSxMDfL501_tRHU2sENXnYIzGJo=/206x305/v2/https://resizing.flixster.com/_8mqDG_CFMbH75r18jov-puBBzA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZiMzNiZmJiLTk1ODItNDBhMi05M2Y1LTJmMjJkNzUwNzJiYy5qcGc=\"\n                alt=\"The Color Purple poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play The Color Purple trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"83f24236-db29-3bcd-8001-658fd8e463fc\"\n                  data-mpx-id=\"2291240515894\"\n                  data-position=\"4\"\n                  data-public-id=\"t6DFAWKZj6nl\"\n                  data-title=\"The Color Purple\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">The Color Purple</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/the_color_purple\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"82\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">The Color Purple</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"83f24236-db29-3bcd-8001-658fd8e463fc\" mediatype=\"Movie\" mediatitle=\"The Color Purple\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/xVd9PLVkH69dU3Yo9XLSjdMeu1M=/206x305/v2/https://resizing.flixster.com/_l50Ahm00b-RO9Ao2s3AyMjUWiU=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2ExYTZmMWFkLWViZWItNDNhMS1iZTEwLTcxODk1YTk3NWFhMy53ZWJw\"\n                alt=\"Spider-Man: Into the Spider-Verse poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Spider-Man: Into the Spider-Verse trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"4517f650-c60a-4edc-b37e-9236213c2b93\"\n                  data-mpx-id=\"1334731843812\"\n                  data-position=\"5\"\n                  data-public-id=\"aMC_TQwwVa7P\"\n                  data-title=\"Spider-Man: Into the Spider-Verse\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Spider-Man: Into the Spider-Verse</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/spider_man_into_the_spider_verse\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"97\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Spider-Man: Into the Spider-Verse</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"4517f650-c60a-4edc-b37e-9236213c2b93\" mediatype=\"Movie\" mediatitle=\"Spider-Man: Into the Spider-Verse\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/r2_bgt54qBv-B1Yzw8ZWWr0bnMk=/206x305/v2/https://resizing.flixster.com/v46-69863n-IXmjpCQlnn_VPPfc=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzIzNWM0ZmU2LTQ0ZjktNGUxNy1hZjE4LTU0OGRmZDcwNTk1Zi53ZWJw\"\n                alt=\"Dolemite Is My Name poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Dolemite Is My Name trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"d187b271-5449-4343-b8fc-23a91b262bfe\"\n                  data-mpx-id=\"1585410627836\"\n                  data-position=\"6\"\n                  data-public-id=\"U2ucXUaEwCeH\"\n                  data-title=\"Dolemite Is My Name\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Dolemite Is My Name</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/dolemite_is_my_name\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"97\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Dolemite Is My Name</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"d187b271-5449-4343-b8fc-23a91b262bfe\" mediatype=\"Movie\" mediatitle=\"Dolemite Is My Name\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/wkbYInSUG8_Mf5Ak0ODgiJ8wwXY=/206x305/v2/https://resizing.flixster.com/Gig4DBtpueUS4tcb3CG3U8RuFSA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzIwMDU5ZDY1LTFlMDItNGViYy04ZDQyLWFhMDgzOWYyZjZmYS53ZWJw\"\n                alt=\"Black Is King poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Black Is King trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"43ee5482-8edf-4492-904f-3d4c0a5755ec\"\n                  data-mpx-id=\"1765917251851\"\n                  data-position=\"7\"\n                  data-public-id=\"lWdgMlvVtQxa\"\n                  data-title=\"Black Is King\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Black Is King</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/black_is_king\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"94\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Black Is King</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"43ee5482-8edf-4492-904f-3d4c0a5755ec\" mediatype=\"Movie\" mediatitle=\"Black Is King\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/sOPwHATyidlVLH0-m4tQN5lNnGM=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p11491087_p_v8_ad.jpg\"\n                alt=\"Creed poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Creed trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"86a4befb-84a1-346b-9d62-f60486b85923\"\n                  data-mpx-id=\"525488195751\"\n                  data-position=\"8\"\n                  data-public-id=\"ogUSRx2oeviy\"\n                  data-title=\"Creed\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Creed</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/creed_2015\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"95\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Creed</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"86a4befb-84a1-346b-9d62-f60486b85923\" mediatype=\"Movie\" mediatitle=\"Creed\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/ray\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/qxx6sIkkmYW_7OXXKknVxo2QgtU=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p35003_p_v8_ae.jpg\"\n                alt=\"Ray poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"79\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Ray</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"4c4bb276-ecf4-3e52-84f5-d43e10ab75a7\" mediatype=\"Movie\" mediatitle=\"Ray\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/dH64ty4xXogChWriSfnj9PpNIEk=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p13365032_p_v8_bb.jpg\"\n                alt=\"Get Out poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Get Out trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"1d826680-7a29-3609-ba5f-0d8b641a1191\"\n                  data-mpx-id=\"779178051753\"\n                  data-position=\"10\"\n                  data-public-id=\"Vsq4bFc_IiUO\"\n                  data-title=\"Get Out\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Get Out</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/get_out\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Get Out</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"1d826680-7a29-3609-ba5f-0d8b641a1191\" mediatype=\"Movie\" mediatitle=\"Get Out\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/X5qLyQtzrY4VTdt1Qj6S6qDrJ0I=/206x305/v2/https://resizing.flixster.com/Lk4Rbo-fk3X7QMms30fcwVyFAFg=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2I4YWYyNTM4LTlkZTAtNDA0NS05OTRhLWFmYWNlZGQ1Y2RiYS53ZWJw\"\n                alt=\"Selma poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Selma trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"c73656b8-5e8a-3848-8df1-6aa864b48872\"\n                  data-mpx-id=\"1815491651996\"\n                  data-position=\"11\"\n                  data-public-id=\"d8unQ6m01bYB\"\n                  data-title=\"Selma\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Selma</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/selma\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"99\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Selma</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"c73656b8-5e8a-3848-8df1-6aa864b48872\" mediatype=\"Movie\" mediatitle=\"Selma\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/nFQkAi6UcqLV5SFUDZXL8btZQIg=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p24979_p_v8_aa.jpg\"\n                alt=\"Ghost Dog: The Way of the Samurai poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Ghost Dog: The Way of the Samurai trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"93117518-b578-3499-a485-12ef576d9887\"\n                  data-mpx-id=\"2031741507715\"\n                  data-position=\"12\"\n                  data-public-id=\"pVLWQ3Ysbe9_\"\n                  data-title=\"Ghost Dog: The Way of the Samurai\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Ghost Dog: The Way of the Samurai</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/ghost_dog_the_way_of_the_samurai\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"84\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Ghost Dog: The Way of the Samurai</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"93117518-b578-3499-a485-12ef576d9887\" mediatype=\"Movie\" mediatitle=\"Ghost Dog: The Way of the Samurai\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/1097991-george_washington\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ZBOdVtpiQuvIKVHqC1gKw4pDkCQ=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p71276_p_v8_aa.jpg\"\n                alt=\"George Washington poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"84\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">George Washington</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"de816fc2-b66f-3c44-bf9b-2947a9760dbc\" mediatype=\"Movie\" mediatitle=\"George Washington\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/z27vZVXCRmpvETmdJQEW9Il7Z2Y=/206x305/v2/https://resizing.flixster.com/KBlur3LaA-y1U1yt6_Y2uO25ozA=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzMxOGI1YzBhLWMyMjEtNGUxMS1iM2Q0LWQ4OGMyYzQyZjQyYS53ZWJw\"\n                alt=\"Black Panther poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Black Panther trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"e1374d4d-19b0-31b2-a6cc-c4189f2b27ca\"\n                  data-mpx-id=\"1143920195748\"\n                  data-position=\"14\"\n                  data-public-id=\"tq_4lonVWOTD\"\n                  data-title=\"Black Panther\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Black Panther</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/black_panther_2018\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"96\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Black Panther</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"e1374d4d-19b0-31b2-a6cc-c4189f2b27ca\" mediatype=\"Movie\" mediatitle=\"Black Panther\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/JKC4UaZHymnUnqPbhWijwXeMaZk=/206x305/v2/https://resizing.flixster.com/HE1uYAymQPCdYxRQ4SQHAOmKE60=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzQ1MTIzMDlhLWJiMWUtNGVhOS05MjFhLTkyMjVmNDkzNDA5Yi53ZWJw\"\n                alt=\"Moonlight poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Moonlight trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"178df329-0579-3001-a67c-3338c4381d3a\"\n                  data-mpx-id=\"742064707613\"\n                  data-position=\"15\"\n                  data-public-id=\"EC8A3pQbV7ZE\"\n                  data-title=\"Moonlight\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Moonlight</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/moonlight_2016\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Moonlight</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"178df329-0579-3001-a67c-3338c4381d3a\" mediatype=\"Movie\" mediatitle=\"Moonlight\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/ysCblZ9qeH40_tHWse78MoOhHRo=/206x305/v2/https://resizing.flixster.com/PodzaMQOSuxdGft4HaiYgF4zVg8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVmMzQzMmY4LTJjZTQtNGQ1MC05YWU2LWNjZTUzYmE4OWI3ZS53ZWJw\"\n                alt=\"Girls Trip poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play Girls Trip trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"337ab691-fe4f-3abb-aa38-bf3081a8a8da\"\n                  data-mpx-id=\"940516419651\"\n                  data-position=\"16\"\n                  data-public-id=\"4cGq95QTxUjK\"\n                  data-title=\"Girls Trip\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">Girls Trip</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/girls_trip\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"92\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Girls Trip</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"337ab691-fe4f-3abb-aa38-bf3081a8a8da\" mediatype=\"Movie\" mediatitle=\"Girls Trip\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            \n            <tile-dynamic isvideo data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/FpOCRlTyHhk3PlQL-zotP1NgFrc=/206x305/v2/https://resizing.flixster.com/ny51tK1hvdxr3dqePecb_TDHXs8=/ems.cHJkLWVtcy1hc3NldHMvbW92aWVzL2M1NmY4NGFjLWViZGEtNDUwMi1hMjhmLTQ4OWIzZjdhMGM0MS5qcGc=\"\n                alt=\"One Night in Miami poster\"\n              ></rt-img>\n              \n                <button\n                  aria-label=\"Play One Night in Miami trailer\"\n                  class=\"transparent unset\"\n                  data-content-type=\"movie\"\n                  data-disable-ads=\"\"\n                  data-ems-id=\"19b51102-b1fa-4709-b584-2e2b021d3778\"\n                  data-mpx-id=\"1839978563679\"\n                  data-position=\"17\"\n                  data-public-id=\"YVm_11qwp8pM\"\n                  data-title=\"One Night in Miami\"\n                  data-track=\"poster\"\n                  data-type=\"Movie\"\n                  data-VideoPlayerOverlayManager=\"btnVideo:click\"\n                  data-video-list=\"rt-hp-poster-list-streaming-service-4\"\n                  slot=\"imageAction\"\n\n                >\n                  <span class=\"sr-only\">One Night in Miami</span>\n                </button>\n                \n                <a slot=\"caption\" href=\"/m/one_night_in_miami\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"98\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">One Night in Miami</span>\n              \n                </a>\n              \n            </tile-dynamic>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"19b51102-b1fa-4709-b584-2e2b021d3778\" mediatype=\"Movie\" mediatitle=\"One Night in Miami\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/tangerine_2015\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/Jq9v321L71cbRom52cbh1eJfDwI=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p11663255_p_v8_ad.jpg\"\n                alt=\"Tangerine poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"96\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Tangerine</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"3ce20e38-0d09-39e7-ae12-99cfa2ad30cf\" mediatype=\"Movie\" mediatitle=\"Tangerine\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/drumline\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/xCtaWkSfXdd5Gn1Mjz6rmqrI2yg=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p29320_p_v8_ba.jpg\"\n                alt=\"Drumline poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"82\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Drumline</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"8d0ac5c9-7e21-38bc-b872-7881a6daff13\" mediatype=\"Movie\" mediatitle=\"Drumline\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n        <tiles-carousel-responsive-item-deprecated slot=\"tile\">\n          \n            <a href=\"/m/jingle_jangle_a_christmas_journey\">\n          \n            \n            <tile-dynamic  data-qa=\"tile\">\n              <rt-img\n                slot=\"image\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/OjuFWA1PE0nLK_BuQc7uyA1DoIc=/206x305/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p18935775_p_v8_ab.jpg\"\n                alt=\"Jingle Jangle: A Christmas Journey poster\"\n              ></rt-img>\n              \n                <div slot=\"caption\" data-track=\"scores\">\n              \n                <score-pairs-deprecated\n                  audiencesentiment=\"hide\"\n                  audiencescore=\"hide\"\n                  criticssentiment=\"positive\"\n                  criticsscore=\"90\"\n                  criticscertified\n                >\n                </score-pairs-deprecated>\n                <span class=\"p--small\">Jingle Jangle: A Christmas Journey</span>\n              \n                </div>\n              \n            </tile-dynamic>\n          \n            </a>\n          \n\n          \n          <watchlist-button state=\"unchecked\" emsid=\"d5788382-c463-3bd2-bf21-d5df8521462f\" mediatype=\"Movie\" mediatitle=\"Jingle Jangle: A Christmas Journey\" data-WatchlistButtonManager=\"watchlistButton:click\">\n          </watchlist-button>\n          \n        </tiles-carousel-responsive-item-deprecated>\n      \n\n      <button slot=\"scroll-right\">\n        <rt-icon slot=\"icon-arrow-right\" image icon=\"right-chevron\"></rt-icon>\n      </button>\n      \n    </tiles-carousel-responsive-deprecated>\n  </section>\n\n</div>\n\n\n        \n    \n</section>\n\n        <section id=\"trailers-and-videos\" class=\"trailers-and-videos\" data-qa=\"section:trailers-and-videos\" data-curation=\"\">\n    <div class=\"trailers-and-videos__header\">\n        <h2 data-qa=\"trailers-and-videos-title\">Trailers &amp; Videos</h2>\n        <a class=\"a--short\" href=\"https://editorial.rottentomatoes.com/video-interviews/\" data-qa=\"trailers-and-videos-view-all-link\">\n            View all\n        </a>\n    </div>\n    <div class=\"trailers-and-videos__body\">\n        <div class=\"module-1x4\">\n            <ul class=\"module-1x4__left\">\n              \n              <li class=\"trailers-and-videos-item module-1x4__item\" data-qa=\"trailers-and-videos-item\">\n  <a href=https://editorial.rottentomatoes.com/article/meet-the-dude-and-the-wildly-chill-religion-based-on-the-big-lebowski/ data-qa=\"trailers-and-videos-item-link\">\n      <div class=\"trailers-and-videos-item__body\">\n          <div class=\"trailers-and-videos-item__thumbnail-group\">\n            <img\n              class=\"trailers-and-videos-item__thumbnail-image home__thumbnail\"\n              src=\"https://images.fandango.com/cms/assets/cb7f5ab0-cad5-11ee-888e-b987c7e657bd--moviepeople.jpg\"\n              alt=\"Movie People\"\n              loading=\"lazy\" />\n            \n              <rt-badge>Original </rt-badge>\n            \n          </div>\n          <div class=\"trailers-and-videos-item__info\">\n              <h3>Movie People</h3>\n              <p class=\"p--short\">Meet \"The Dude\" and the wildly chill religion based on <em>The Big Lebowski</em></p>\n          </div>\n        </div>\n    </a>\n</li>\n\n            </ul>\n            <ul class=\"module-1x4__right\">\n                \n                    \n                    <li class=\"trailers-and-videos-item module-1x4__item\" data-qa=\"trailers-and-videos-item\">\n  <a href=https://editorial.rottentomatoes.com/article/the-avatar-the-last-airbender-cast-talk-favorite-bending-abilities-and-staying-true-to-the-original/ data-qa=\"trailers-and-videos-item-link\">\n      <div class=\"trailers-and-videos-item__body\">\n          <div class=\"trailers-and-videos-item__thumbnail-group\">\n            <img\n              class=\"trailers-and-videos-item__thumbnail-image home__thumbnail\"\n              src=\"https://images.fandango.com/cms/assets/50bb90f0-d1a6-11ee-a14e-3f3f55d13640--avatar-video.jpg\"\n              alt=\"&lt;em&gt;Avatar&lt;/em&gt; \"\n              loading=\"lazy\" />\n            \n              <rt-badge>Interview</rt-badge>\n            \n          </div>\n          <div class=\"trailers-and-videos-item__info\">\n              <h3><em>Avatar</em> </h3>\n              <p class=\"p--short\">The <em>Last Airbender</em> cast's favorite bending abilities</p>\n          </div>\n        </div>\n    </a>\n</li>\n\n                \n                    \n                    <li class=\"trailers-and-videos-item module-1x4__item\" data-qa=\"trailers-and-videos-item\">\n  <a href=https://editorial.rottentomatoes.com/article/the-madame-web-cast-on-driving-ambulances-and-2000s-fashion/ data-qa=\"trailers-and-videos-item-link\">\n      <div class=\"trailers-and-videos-item__body\">\n          <div class=\"trailers-and-videos-item__thumbnail-group\">\n            <img\n              class=\"trailers-and-videos-item__thumbnail-image home__thumbnail\"\n              src=\"https://images.fandango.com/cms/assets/a2e3fe30-cf53-11ee-a14e-3f3f55d13640--madameweb.jpg\"\n              alt=\"&lt;em&gt;Madame Web&lt;/em&gt; \"\n              loading=\"lazy\" />\n            \n              <rt-badge>Interview</rt-badge>\n            \n          </div>\n          <div class=\"trailers-and-videos-item__info\">\n              <h3><em>Madame Web</em> </h3>\n              <p class=\"p--short\">The cast on driving ambulances and 2000s fashion</p>\n          </div>\n        </div>\n    </a>\n</li>\n\n                \n                    \n                    <li class=\"trailers-and-videos-item module-1x4__item\" data-qa=\"trailers-and-videos-item\">\n  <a href=https://editorial.rottentomatoes.com/article/becoming-mr-and-mrs-smith/ data-qa=\"trailers-and-videos-item-link\">\n      <div class=\"trailers-and-videos-item__body\">\n          <div class=\"trailers-and-videos-item__thumbnail-group\">\n            <img\n              class=\"trailers-and-videos-item__thumbnail-image home__thumbnail\"\n              src=\"https://images.fandango.com/cms/assets/8e0bdcd0-bf13-11ee-8304-93cc192ec022--mrmrssmith.jpg\"\n              alt=\"&lt;em&gt;Mr. and Mrs. Smith&lt;/em&gt; \"\n              loading=\"lazy\" />\n            \n              <rt-badge>Interview</rt-badge>\n            \n          </div>\n          <div class=\"trailers-and-videos-item__info\">\n              <h3><em>Mr. and Mrs. Smith</em> </h3>\n              <p class=\"p--short\">Donald Glover and Maya Erskine on becoming Mr. and Mrs. Smith</p>\n          </div>\n        </div>\n    </a>\n</li>\n\n                \n                    \n                    <li class=\"trailers-and-videos-item module-1x4__item\" data-qa=\"trailers-and-videos-item\">\n  <a href=https://editorial.rottentomatoes.com/article/the-stars-of-true-detective-on-what-to-expect-from-night-country/ data-qa=\"trailers-and-videos-item-link\">\n      <div class=\"trailers-and-videos-item__body\">\n          <div class=\"trailers-and-videos-item__thumbnail-group\">\n            <img\n              class=\"trailers-and-videos-item__thumbnail-image home__thumbnail\"\n              src=\"https://images.fandango.com/cms/assets/bca84510-b58b-11ee-8304-93cc192ec022--550true-detective-interviews.jpg\"\n              alt=\"&lt;em&gt;True Detective&lt;/em&gt; \"\n              loading=\"lazy\" />\n            \n              <rt-badge>Interview</rt-badge>\n            \n          </div>\n          <div class=\"trailers-and-videos-item__info\">\n              <h3><em>True Detective</em> </h3>\n              <p class=\"p--short\">The stars on what to expect from <em>Night Country</em></p>\n          </div>\n        </div>\n    </a>\n</li>\n\n                \n            </ul>\n        </div>\n    </div>\n</section>\n\n        <section id=\"movie-and-tv-guides\" class=\"movie-and-tv-guides \" data-curation=\"rt-hp-movie-and-tv-guides\" data-qa=\"section:movie-tv-guides\">\n  <div class=\"movie-and-tv-guides__header \">\n    <h2 class=\"\" data-qa=\"movie-tv-guides-title\">Movie &amp; TV guides</h2>\n    <a\n        class=\"a--short \"\n        href=\"https://editorial.rottentomatoes.com/more-related-content/\"\n        data-qa=\"news-view-all-link\"\n    >View All</a>\n  </div>\n  <div class=\"movie-and-tv-guides__body \">\n    <ul class=\"movie-and-tv-guides__items\">\n      \n        <li class=\"movie-and-tv-guides-item\" data-qa=\"news-article-item\">\n          <a href=\"https://www.rottentomatoes.com/movie-trivia/\" data-qa=\"news-article-link\">\n              <img\n                alt=\"Play Daily Tomato Movie Trivia \"\n                class=\"movie-and-tv-guides-item__image home__thumbnail\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/Wn0xAks3MxSSxdYxhoiX2mCv-g8=/370x208/v2/https://images.fandango.com/cms/assets/d6b11090-bbe4-11ee-aacf-bf03979f2ab5--dailytomato-featured.jpg\"\n              />\n              <p class=\"movie-and-tv-guides-item__main\">\n                  <span class=\"movie-and-tv-guides-item__header \">Play Daily Tomato Movie Trivia  </span>\n              </p>\n          </a>\n        </li>\n      \n        <li class=\"movie-and-tv-guides-item\" data-qa=\"news-article-item\">\n          <a href=\"https://editorial.rottentomatoes.com/rt-hub/awards-tour/\" data-qa=\"news-article-link\">\n              <img\n                alt=\"Awards Tour\"\n                class=\"movie-and-tv-guides-item__image home__thumbnail\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/qix35m9tklNe2E48d2PEX8026uo=/370x208/v2/https://images.fandango.com/cms/assets/94fd32b0-8fdd-11ee-8105-b7f85fb17c0d--rt-awardstour-thumbnail-600x314.jpg\"\n              />\n              <p class=\"movie-and-tv-guides-item__main\">\n                  <span class=\"movie-and-tv-guides-item__header \">Awards Tour </span>\n              </p>\n          </a>\n        </li>\n      \n        <li class=\"movie-and-tv-guides-item\" data-qa=\"news-article-item\">\n          <a href=\"https://editorial.rottentomatoes.com/rt-hub/what-to-watch/\" data-qa=\"news-article-link\">\n              <img\n                alt=\"Discover What to Watch\"\n                class=\"movie-and-tv-guides-item__image home__thumbnail\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/r4UN8NiGsk2f9QZ3NQzHh_lqKtY=/370x208/v2/https://images.fandango.com/cms/assets/a2d32990-ee9c-11ed-9577-b524031771c2--rt-wtw-generic-2023-thumbnail-600x314-021623.jpg\"\n              />\n              <p class=\"movie-and-tv-guides-item__main\">\n                  <span class=\"movie-and-tv-guides-item__header \">Discover What to Watch </span>\n              </p>\n          </a>\n        </li>\n      \n        <li class=\"movie-and-tv-guides-item\" data-qa=\"news-article-item\">\n          <a href=\"https://editorial.rottentomatoes.com/article/rotten-tomatoes-is-wrong-podcast/\" data-qa=\"news-article-link\">\n              <img\n                alt=\"Rotten Tomatoes Podcasts\"\n                class=\"movie-and-tv-guides-item__image home__thumbnail\"\n                loading=\"lazy\"\n                src=\"https://resizing.flixster.com/VmPdoWiqlYvw1FdcyZPIAiqti5E=/370x208/v2/https://images.fandango.com/cms/assets/eefaf360-086b-11ed-bbb0-99bdf247c629--rt-podcasts-carousel-550x310.jpg\"\n              />\n              <p class=\"movie-and-tv-guides-item__main\">\n                  <span class=\"movie-and-tv-guides-item__header \">Rotten Tomatoes Podcasts </span>\n              </p>\n          </a>\n        </li>\n      \n    </ul>\n  </div>\n</section>\n\n\n        <div class=\"home-news-list-ad\">\n            <div class=\"home-news-list-ad__body\">\n                <ad-unit hidden unitdisplay=\"desktop\" unittype=\"boxadone\" data-AdUnitManager=\"adUnit:error\">\n                    <aside slot=\"adInject\" class=\"rectangle_ad\"></aside>\n                </ad-unit>\n\n                <ad-unit hidden unitdisplay=\"mobile\" unittype=\"mboxadtwo\" data-AdUnitManager=\"adUnit:error\">\n                    <aside slot=\"adInject\" class=\"rectangle_ad\"></aside>\n                </ad-unit>\n            </div>\n        </div>\n    </div>\n\n    <overlay-base\n    data-JwPlayerManager=\"overlayBase:close\"\n    data-VideoPlayerOverlayManager=\"overlayBase:close\"\n    hidden\n>\n    <video-player-overlay class=\"video-overlay-wrap\" slot=\"content\" data-qa=\"video-overlay\">\n        <div slot=\"header\">\n            <button\n                class=\"unset transparent\"\n                data-VideoPlayerOverlayManager=\"btnOverlayClose:click\"\n                data-qa=\"video-close-btn\"\n            >\n                <rt-icon icon=\"close\">\n                    <span class=\"sr-only\">Close video</span>\n                </rt-icon>\n            </button>\n            <a class=\"cta-btn header-cta button hide\">See Details</a>\n        </div>\n        \n        <div slot=\"content\"></div>\n        \n        <a slot=\"footer\" class=\"cta-btn footer-cta button hide\">See Details</a>\n    </video-player-overlay>\n</overlay-base>\n\n<div id=\"video-overlay-player\" hidden></div>\n\n<video-player-overlay-manager></video-player-overlay-manager>\n<jw-player-manager\n    data-AdsVideoSpotlightManager=\"jwPlayerManager:playlistItem,ready,remove\"\n    data-VideoPlayerOverlayManager=\"jwPlayerManager:playlistItem,pause,ready,relatedClose,relatedOpen\"\n>\n</jw-player-manager>\n\n                </div>\n\n                <back-to-top hidden></back-to-top>\n            </main>\n\n            <ad-unit hidden unitdisplay=\"desktop\" unittype=\"bottombanner\" data-AdUnitManager=\"adUnit:error\">\n                <div slot=\"adInject\" class=\"sleaderboard_wrapper\"></div>\n            </ad-unit>\n\n            <footer-manager></footer-manager>\n<footer class=\"footer container\" data-PagePicturesManager=\"footer\">\n    <div class=\"footer__content-desktop-block\" data-qa=\"footer:section\">\n        <div class=\"footer__content-group\">\n            <ul class=\"footer__links-list\">\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/help_desk\" data-qa=\"footer:link-helpdesk\">Help</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/about\" data-qa=\"footer:link-about\">About Rotten Tomatoes</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/about#whatisthetomatometer\" data-qa=\"footer:link-whats-tmeter\">What's the Tomatometer<sup>&reg;</sup>?</a>\n                </li>\n                <li id=\"footer-feedback\" class=\"footer__links-list-item\" data-qa=\"footer-feedback-desktop\">\n                    \n                </li>\n            </ul>\n        </div>\n        <div class=\"footer__content-group\">\n            <ul class=\"footer__links-list\">\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/critics/criteria\" data-qa=\"footer:link-critic-submission\">Critic Submission</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/help_desk/licensing\" data-qa=\"footer:link-licensing\">Licensing</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"https://together.nbcuni.com/advertise/?utm_source=rotten_tomatoes&amp;utm_medium=referral&amp;utm_campaign=property_ad_pages&amp;utm_content=footer\" target=\"_blank\" rel=\"noopener\" data-qa=\"footer:link-ads\">Advertise With Us</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"//www.fandango.com/careers\" target=\"_blank\" rel=\"noopener\" data-qa=\"footer:link-careers\">Careers</a>\n                </li>\n            </ul>\n        </div>\n        <div class=\"footer__content-group footer__newsletter-block\">\n            <p class=\"h3 footer__content-group-title\"><span class=\"rt-icon rt-icon__mail footer__newsletter-icon\"></span>Join The Newsletter</p>\n            <p class=\"footer__newsletter-copy\">Get the freshest reviews, news, and more delivered right to your inbox!</p>\n            <rt-button data-FooterManager=\"btnNewsLetter:click\" data-qa=\"footer-newsletter-desktop\">\n                Join The Newsletter\n            </rt-button>\n            <a data-FooterManager=\"linkNewsLetter\" class= \"button footer__newsletter-btn hide\" target=\"_blank\" rel=\"noopener\">\n                Join The Newsletter\n            </a>\n        </div>\n        <div class=\"footer__content-group footer__social-block\" data-qa=\"footer:social\">\n            <p class=\"h3 footer__content-group-title\">Follow Us</p>\n            <social-media-icons theme=\"light\" size=\"20\"></social-media-icons>\n        </div>\n    </div>\n    <div class=\"footer__content-mobile-block\" data-qa=\"mfooter:section\">\n        <div class=\"footer__content-group\">\n            <p class=\"footer__copyright-legal\" data-qa=\"mfooter:copyright\">Copyright &copy; Fandango. All rights reserved.</p>\n            <rt-button data-FooterManager=\"btnNewsLetter:click\" data-qa=\"footer-newsletter-mobile\">Join The Newsletter</rt-button>\n            <a\n                data-FooterManager=\"linkNewsLetter\"\n                class= \"button footer__newsletter-btn hide\"\n                target=\"_blank\"\n                rel=\"noopener\"\n            >Join The Newsletter</a>\n\n            <ul class=\"footer__links-list list-inline\">\n                <li class=\"footer__links-list-item\">\n                    <a href=\"https://www.nbcuniversal.com/fandango-privacy-policy\" target=\"_blank\" rel=\"noopener\" data-qa=\"mfooter:link-privacy-policy\">\n                        Privacy Policy\n                    </a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/policies/terms-and-policies\" data-qa=\"mfooter:link-terms-policies\">Terms and Policies</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <img data-FooterManager=\"iconCCPA\" src=\"https://images.fandango.com/cms/assets/266533e0-7afb-11ed-83f2-4f600722b564--privacyoptions.svg\" class=\"footer__ccpa-icon\" loading=\"lazy\" alt=\"CCPA icon\" />\n                    <!-- OneTrust Cookies Settings button start -->\n                    <a href=\"javascript:void(0)\" id=\"ot-sdk-btn\" class=\"ot-sdk-show-settings mobile\" data-qa=\"footer-cookie-settings-mobile\">Cookie Settings</a>\n                    <!-- OneTrust Cookies Settings button end -->\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"https://www.nbcuniversal.com/privacy/california-consumer-privacy-act\" target=\"_blank\" rel=\"noopener\" data-qa=\"mfooter:link-california-notice\">California Notice</a>\n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"https://www.nbcuniversal.com/privacy/cookies#accordionheader2\" target=\"_blank\" rel=\"noopener\" data-qa=\"mfooter:link-adChoices\">Ad Choices</a>\n                </li>\n                <li id=\"footer-feedback-mobile\" class=\"footer__links-list-item\" data-qa=\"footer-feedback-mobile\">\n                    \n                </li>\n                <li class=\"footer__links-list-item\">\n                    <a href=\"/faq#accessibility\" data-qa=\"mfooter:link-accessibility\">Accessibility</a>\n                </li>\n            </ul>\n        </div>\n    </div>\n    <div class=\"footer__copyright\">\n        <ul class=\"footer__links-list list-inline list-inline--separator\" data-qa=\"footer:links-list-privacy\">\n            <li class=\"footer__links-list-item version\" data-qa=\"footer:version\">\n                <span>V3.1</span>\n            </li>\n            <li class=\"footer__links-list-item\">\n                <a href=\"https://www.nbcuniversal.com/fandango-privacy-policy\" target=\"_blank\" rel=\"noopener\" data-qa=\"footer:link-privacy-policy\">\n                    Privacy Policy\n                </a>\n            </li>\n            <li class=\"footer__links-list-item\">\n                <a href=\"/policies/terms-and-policies\" data-qa=\"footer:link-terms-policies\">Terms and Policies</a>\n            </li>\n            <li class=\"footer__links-list-item\">\n                <img data-FooterManager=\"iconCCPA\" src=\"https://images.fandango.com/cms/assets/266533e0-7afb-11ed-83f2-4f600722b564--privacyoptions.svg\" class=\"footer__ccpa-icon\" loading=\"lazy\" alt=\"CCPA icon\" />\n                <!-- OneTrust Cookies Settings button start -->\n                <a href=\"javascript:void(0)\" id=\"ot-sdk-btn\" class=\"ot-sdk-show-settings\" data-qa=\"footer-cookie-settings-desktop\">Cookie Settings</a>\n                <!-- OneTrust Cookies Settings button end -->\n            </li>\n            <li class=\"footer__links-list-item\">\n                <a href=\"https://www.nbcuniversal.com/privacy/california-consumer-privacy-act\" target=\"_blank\" rel=\"noopener\" data-qa=\"footer:link-california-notice\">California Notice</a>\n            </li>\n            <li class=\"footer__links-list-item\">\n                <a href=\"https://www.nbcuniversal.com/privacy/cookies#accordionheader2\" target=\"_blank\" rel=\"noopener\" data-qa=\"footer:link-adChoices\">Ad Choices</a>\n            </li>\n            <li class=\"footer__links-list-item\">\n                <a href=\"/faq#accessibility\" data-qa=\"footer:link-accessibility\">Accessibility</a>\n            </li>\n        </ul>\n        <span class=\"footer__copyright-legal\" data-qa=\"footer:copyright\">Copyright &copy; Fandango. All rights reserved.</span>\n    </div>\n</footer>\n\n        </div>\n\n        \n    \n        <script type=\"text/javascript\">\n(function (root) {\n/* -- Data -- */\nroot.RottenTomatoes || (root.RottenTomatoes = {});\nroot.RottenTomatoes.context = {\"_routes\":{\"baseCanonicalUrl\":{\"path\":\"https:\\u002F\\u002Fwww.rottentomatoes.com\",\"tokens\":[{\"literal\":\"https:\\u002F\\u002Fwww.rottentomatoes.com\"}]},\"webCriticSourceReviewsNapi\":{\"path\":\"\\u002Fnapi\\u002Fcritics\\u002Fsource\\u002F:publicationId\\u002F:type(movies|tv)\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fcritics\\u002Fsource\\u002F\"},{\"key\":\"publicationId\"},{\"literal\":\"\\u002F\"},{\"key\":\"type\"}]},\"webMovieReviewsNapi\":{\"path\":\"\\u002Fnapi\\u002Fmovie\\u002F:emsId\\u002Freviews\\u002F:type(user|verified_audience|all|top_critics)\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fmovie\\u002F\"},{\"key\":\"emsId\"},{\"literal\":\"\\u002Freviews\\u002F\"},{\"key\":\"type\"}]},\"commonTrackingFreewheelPixelSyncNapi\":{\"path\":\"\\u002Fnapi\\u002Ftracking\\u002Ffreewheel\\u002Fpixelsync\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Ftracking\\u002Ffreewheel\\u002Fpixelsync\"}]},\"webEpisodeReviewsNapi\":{\"path\":\"\\u002Fnapi\\u002Fepisode\\u002F:emsId\\u002Freviews\\u002F:type(all|top_critics)\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fepisode\\u002F\"},{\"key\":\"emsId\"},{\"literal\":\"\\u002Freviews\\u002F\"},{\"key\":\"type\"}]},\"webSeasonReviewsNapi\":{\"path\":\"\\u002Fnapi\\u002Fseason\\u002F:emsId\\u002Freviews\\u002F:type(user|all|top_critics)\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fseason\\u002F\"},{\"key\":\"emsId\"},{\"literal\":\"\\u002Freviews\\u002F\"},{\"key\":\"type\"}]},\"webTvSeasonGetEpisodesNapi\":{\"path\":\"\\u002Fnapi\\u002Ftv\\u002F:vanity\\u002F:tvSeason\\u002Fepisodes\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Ftv\\u002F\"},{\"key\":\"vanity\"},{\"literal\":\"\\u002F\"},{\"key\":\"tvSeason\"},{\"literal\":\"\\u002Fepisodes\"}]},\"commonUserWTSCreateNapi\":{\"path\":\"\\u002Fnapi\\u002Fuser\\u002Fwts\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fuser\\u002Fwts\"}]},\"commonUserWTSDeleteNapi\":{\"path\":\"\\u002Fnapi\\u002Fuser\\u002Fwts\\u002Fdelete\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fuser\\u002Fwts\\u002Fdelete\"}]},\"commonUserRatingCreateNapi\":{\"path\":\"\\u002Fnapi\\u002Fuser\\u002Frating\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fuser\\u002Frating\"}]},\"commonUserGetWTSNapi\":{\"path\":\"\\u002Fnapi\\u002Fuser\\u002Fwts\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fuser\\u002Fwts\"}]},\"commonUserGetRatingNapi\":{\"path\":\"\\u002Fnapi\\u002Fuser\\u002Frating\",\"tokens\":[{\"literal\":\"\\u002Fnapi\\u002Fuser\\u002Frating\"}]},\"resetClient\":{\"path\":\"\\u002Freset-client\",\"tokens\":[{\"literal\":\"\\u002Freset-client\"}]},\"userAccount\":{\"path\":\"\\u002Fuser\\u002Faccount\",\"tokens\":[{\"literal\":\"\\u002Fuser\\u002Faccount\"}]},\"webCritic\":{\"path\":\"\\u002Fcritics\\u002F:vanity\\u002F:type(movies|tv)\",\"tokens\":[{\"literal\":\"\\u002Fcritics\\u002F\"},{\"key\":\"vanity\"},{\"literal\":\"\\u002F\"},{\"key\":\"type\"}]},\"webCriticLanding\":{\"path\":\"\\u002Fcritics\\u002F:vanity\",\"tokens\":[{\"literal\":\"\\u002Fcritics\\u002F\"},{\"key\":\"vanity\"}]},\"webSearchResults\":{\"path\":\"\\u002Fsearch\\u002F\",\"tokens\":[{\"literal\":\"\\u002Fsearch\\u002F\"}]},\"webCriticSource\":{\"path\":\"\\u002Fcritics\\u002Fsource\\u002F:publicationId\",\"tokens\":[{\"literal\":\"\\u002Fcritics\\u002Fsource\\u002F\"},{\"key\":\"publicationId\"}]}}};\nroot.RottenTomatoes.context || (root.RottenTomatoes.context = {});\nroot.RottenTomatoes.context.layout = {\"header\":{\"editorial\":{\"guides\":{\"posts\":[{\"ID\":192196,\"author\":{\"ID\":12,\"username\":\"alex.vo\",\"name\":\"Alex Vo\",\"first_name\":\"Alex\",\"last_name\":\"Vo\",\"nickname\":\"alex.vo\",\"slug\":\"alex-vo\",\"URL\":\"\",\"avatar\":\"https:\\u002F\\u002Fsecure.gravatar.com\\u002Favatar\\u002F818ade2039d2a711e0cd70ae46f14952?s=96\",\"description\":\"\",\"registered\":\"2015-05-12T20:00:23+00:00\",\"meta\":{\"links\":{\"self\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\",\"archives\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\\u002Fposts\"}}},\"featured_image\":{\"source\":\"https:\\u002F\\u002Fprd-rteditorial.s3.us-west-2.amazonaws.com\\u002Fwp-content\\u002Fuploads\\u002F2021\\u002F12\\u002F22091609\\u002F600DriveAwayDolls.jpg\"},\"link\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fguide\\u002Fall-coen-brothers-movies-ranked-by-tomatometer\\u002F\",\"status\":\"publish\",\"title\":\"All Coen Brothers Movies Ranked by Tomatometer\",\"type\":\"guide\"},{\"ID\":248049,\"author\":{\"ID\":12,\"username\":\"alex.vo\",\"name\":\"Alex Vo\",\"first_name\":\"Alex\",\"last_name\":\"Vo\",\"nickname\":\"alex.vo\",\"slug\":\"alex-vo\",\"URL\":\"\",\"avatar\":\"https:\\u002F\\u002Fsecure.gravatar.com\\u002Favatar\\u002F818ade2039d2a711e0cd70ae46f14952?s=96\",\"description\":\"\",\"registered\":\"2015-05-12T20:00:23+00:00\",\"meta\":{\"links\":{\"self\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\",\"archives\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\\u002Fposts\"}}},\"featured_image\":{\"source\":\"https:\\u002F\\u002Fprd-rteditorial.s3.us-west-2.amazonaws.com\\u002Fwp-content\\u002Fuploads\\u002F2023\\u002F12\\u002F28143550\\u002FDune2.jpg\"},\"link\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fguide\\u002Fbest-movies-of-2024\\u002F\",\"status\":\"publish\",\"title\":\"Best Movies of 2024: Best New Movies to Watch Now\",\"type\":\"guide\"}],\"title\":\"Guides\",\"url\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fcountdown\\u002F\"},\"hubs\":{\"posts\":[{\"ID\":193577,\"author\":{\"ID\":12,\"username\":\"alex.vo\",\"name\":\"Alex Vo\",\"first_name\":\"Alex\",\"last_name\":\"Vo\",\"nickname\":\"alex.vo\",\"slug\":\"alex-vo\",\"URL\":\"\",\"avatar\":\"https:\\u002F\\u002Fsecure.gravatar.com\\u002Favatar\\u002F818ade2039d2a711e0cd70ae46f14952?s=96\",\"description\":\"\",\"registered\":\"2015-05-12T20:00:23+00:00\",\"meta\":{\"links\":{\"self\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\",\"archives\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\\u002Fposts\"}}},\"featured_image\":{\"source\":\"https:\\u002F\\u002Fprd-rteditorial.s3.us-west-2.amazonaws.com\\u002Fwp-content\\u002Fuploads\\u002F2023\\u002F01\\u002F08122059\\u002FRT_BHM_2024_Representative_600x314.jpg\"},\"link\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Frt-hub\\u002Fblack-heritage\\u002F\",\"status\":\"publish\",\"title\":\"Black Heritage\",\"type\":\"rt-hub\"},{\"ID\":246300,\"author\":{\"ID\":12,\"username\":\"alex.vo\",\"name\":\"Alex Vo\",\"first_name\":\"Alex\",\"last_name\":\"Vo\",\"nickname\":\"alex.vo\",\"slug\":\"alex-vo\",\"URL\":\"\",\"avatar\":\"https:\\u002F\\u002Fsecure.gravatar.com\\u002Favatar\\u002F818ade2039d2a711e0cd70ae46f14952?s=96\",\"description\":\"\",\"registered\":\"2015-05-12T20:00:23+00:00\",\"meta\":{\"links\":{\"self\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\",\"archives\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwp-json\\u002Fusers\\u002F12\\u002Fposts\"}}},\"featured_image\":{\"source\":\"https:\\u002F\\u002Fprd-rteditorial.s3.us-west-2.amazonaws.com\\u002Fwp-content\\u002Fuploads\\u002F2023\\u002F12\\u002F28083601\\u002FGTA_Thumb_2023_Main.jpg\"},\"link\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Frt-hub\\u002Fgolden-tomato-awards-best-movies-tv-of-2023\\u002F\",\"status\":\"publish\",\"title\":\"Golden Tomato Awards: Best Movies &#038; TV of 2023\",\"type\":\"rt-hub\"}],\"title\":\"Hubs\",\"url\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Frt-hubs\\u002F\"},\"news\":{\"posts\":[{\"ID\":248607,\"author\":825,\"featured_image\":{\"source\":\"https:\\u002F\\u002Fprd-rteditorial.s3.us-west-2.amazonaws.com\\u002Fwp-content\\u002Fuploads\\u002F2024\\u002F02\\u002F21225435\\u002Favatar-the-last-airbender-netflix-key-art.jpg\"},\"link\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Farticle\\u002Favatar-the-last-airbender-first-reviews-it-isnt-perfect-but-its-respectful-of-the-original-and-fun\\u002F\",\"promo_order\":\"\",\"status\":\"publish\",\"title\":\"\\u003Cem\\u003EAvatar: The Last Airbender\\u003C\\u002Fem\\u003E First Reviews: It Isn&#8217;t Perfect, but It&#8217;s Respectful of the Original and Fun\",\"type\":\"article\"},{\"ID\":246137,\"author\":814,\"featured_image\":{\"source\":\"https:\\u002F\\u002Fprd-rteditorial.s3.us-west-2.amazonaws.com\\u002Fwp-content\\u002Fuploads\\u002F2024\\u002F02\\u002F22140327\\u002FTV_Premiere_Dates_2024_Boys_S4-Rep.jpg\"},\"link\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Farticle\\u002Ftv-premiere-dates-2024\\u002F\",\"promo_order\":\"\",\"status\":\"publish\",\"title\":\"TV Premiere Dates 2024\",\"type\":\"article\"}],\"title\":\"RT News\",\"url\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fnews\\u002F\"}},\"trendingTarsSlug\":\"rt-nav-trending\",\"trending\":[{\"header\":\"Avatar: The Last Airbender\",\"url\":\"https:\\u002F\\u002Fwww.rottentomatoes.com\\u002Ftv\\u002Favatar_the_last_airbender_2024\\u002Fs01\"},{\"header\":\"Play Movie Trivia \",\"url\":\"https:\\u002F\\u002Fwww.rottentomatoes.com\\u002Fmovie-trivia\\u002F\"},{\"header\":\"Dune: Part Two\",\"url\":\"https:\\u002F\\u002Fwww.rottentomatoes.com\\u002Fm\\u002Fdune_part_two\"},{\"header\":\"Madame Web\",\"url\":\"https:\\u002F\\u002Fwww.rottentomatoes.com\\u002Fm\\u002Fmadame_web\"}],\"certifiedMedia\":{\"certifiedFreshTvSeason\":{\"header\":null,\"media\":{\"url\":\"\\u002Ftv\\u002Fcurb_your_enthusiasm\\u002Fs12\",\"name\":\"Curb Your Enthusiasm: Season 12\",\"score\":95,\"posterImg\":\"https:\\u002F\\u002Fresizing.flixster.com\\u002Fm-trsJs01sQN6ARI2-hJCu2WU4s=\\u002F206x305\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002Fb9gvtPGcJl_0dIXdvm69YhE4bfc=\\u002Ffit-in\\u002F180x240\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002FgNI9n58gAPFNbTXZ55BfAvO05gM=\\u002Fems.cHJkLWVtcy1hc3NldHMvdHZzZWFzb24vODEzNTE1ZDctYTAxNC00MGNhLTk1NjUtODcxMjhmZjViMTg2LmpwZw==\"},\"tarsSlug\":\"rt-nav-list-cf-picks\"},\"certifiedFreshMovieInTheater\":{\"header\":null,\"media\":{\"url\":\"\\u002Fm\\u002Fdune_part_two\",\"name\":\"Dune: Part Two\",\"score\":98,\"posterImg\":\"https:\\u002F\\u002Fresizing.flixster.com\\u002FvxpGJEnkzJSlcWEm4jXg7uSSK1Y=\\u002F206x305\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002FLayhPI3IgSXjXMPj-JRqErf7Yb0=\\u002Ffit-in\\u002F180x240\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002FPgHhmCKS3hR6GUsVNlC-vZ9d90I=\\u002Fems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzZhOTA0OTIzLTEwNDctNDhkNS1iNTc3LTY3MjBmNDc5OGU1Mi5qcGc=\"}},\"certifiedFreshMovieInTheater4\":{\"header\":null,\"media\":{\"url\":\"\\u002Fm\\u002Ffitting_in_2023\",\"name\":\"Fitting In\",\"score\":95,\"posterImg\":\"https:\\u002F\\u002Fresizing.flixster.com\\u002FRxil_zdW8QOLul_u7ZTSoCQ1pQ0=\\u002F206x305\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002FkXvEuEdlU2FbQWsIy99EjUDjWxo=\\u002Ffit-in\\u002F180x240\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002FHgJYJqGbkyqb17jdSAfrj9E2_7w=\\u002Fems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVlZjA0ZmViLTY0NTQtNDE3NC1iYzU5LTE5Y2Q5YjAzMDAzNy5qcGc=\"}},\"certifiedFreshMovieAtHome\":{\"header\":null,\"media\":{\"url\":\"\\u002Fm\\u002Forion_and_the_dark\",\"name\":\"Orion and the Dark\",\"score\":90,\"posterImg\":\"https:\\u002F\\u002Fresizing.flixster.com\\u002FAkzPYg9nTVaL6lVuHxTxK9WfQxg=\\u002F206x305\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002FNe0i8eER4JBoWRB7pW2k42r-khg=\\u002Ffit-in\\u002F180x240\\u002Fv2\\u002Fhttps:\\u002F\\u002Fresizing.flixster.com\\u002F3g9tZnA26NUFtH2uaUW1V1LKPPU=\\u002Fems.cHJkLWVtcy1hc3NldHMvbW92aWVzLzVkMTEzYTBiLTQ3NTYtNDkwMy1iOGQ3LTZmMTBkOWRlOWRlOC5qcGc=\"}},\"tarsSlug\":\"rt-nav-list-cf-picks\"},\"tvLists\":{\"newTvTonight\":{\"tarsSlug\":\"rt-hp-text-list-new-tv-this-week\",\"title\":\"New TV Tonight\",\"shows\":[{\"title\":\"The Second Best Hospital in The Galaxy: Season 1\",\"tomatometer\":{\"tomatometer\":83,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fthe_second_best_hospital_in_the_galaxy\\u002Fs01\"},{\"title\":\"Constellation: Season 1\",\"tomatometer\":{\"tomatometer\":73,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fconstellation\\u002Fs01\"},{\"title\":\"Star Wars: The Bad Batch: Season 3\",\"tomatometer\":{\"tomatometer\":82,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fstar_wars_the_bad_batch\\u002Fs03\"},{\"title\":\"Avatar: The Last Airbender: Season 1\",\"tomatometer\":{\"tomatometer\":60,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Favatar_the_last_airbender_2024\\u002Fs01\"},{\"title\":\"Can I Tell You A Secret?: Season 1\",\"tomatometer\":{\"tomatometer\":null,\"state\":\"\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fcan_i_tell_you_a_secret\\u002Fs01\"},{\"title\":\"Last Week Tonight With John Oliver: Season 11\",\"tomatometer\":{\"tomatometer\":null,\"state\":\"\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Flast_week_tonight_with_john_oliver\\u002Fs11\"},{\"title\":\"James Brown: Say It Loud: Season 1\",\"tomatometer\":{\"tomatometer\":null,\"state\":\"\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fjames_brown_say_it_loud\\u002Fs01\"}]},\"mostPopularTvOnRt\":{\"tarsSlug\":\"rt-hp-text-list-most-popular-tv-on-rt\",\"title\":\"Most Popular TV on RT\",\"shows\":[{\"title\":\"Shōgun: Season 1\",\"tomatometer\":{\"tomatometer\":100,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fshogun_2024\\u002Fs01\"},{\"title\":\"Constellation: Season 1\",\"tomatometer\":{\"tomatometer\":73,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fconstellation\\u002Fs01\"},{\"title\":\"Avatar: The Last Airbender: Season 1\",\"tomatometer\":{\"tomatometer\":60,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Favatar_the_last_airbender_2024\\u002Fs01\"},{\"title\":\"True Detective: Season 4\",\"tomatometer\":{\"tomatometer\":92,\"state\":\"certified_fresh\",\"certifiedFresh\":true},\"tvPageUrl\":\"\\u002Ftv\\u002Ftrue_detective\\u002Fs04\"},{\"title\":\"One Day: Season 1\",\"tomatometer\":{\"tomatometer\":93,\"state\":\"certified_fresh\",\"certifiedFresh\":true},\"tvPageUrl\":\"\\u002Ftv\\u002Fone_day_2024\\u002Fs01\"},{\"title\":\"House of Ninjas: Season 1\",\"tomatometer\":{\"tomatometer\":100,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fhouse_of_ninjas\\u002Fs01\"},{\"title\":\"A Killer Paradox: Season 1\",\"tomatometer\":{\"tomatometer\":100,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fa_killer_paradox\\u002Fs01\"},{\"title\":\"Resident Alien: Season 3\",\"tomatometer\":{\"tomatometer\":null,\"state\":\"\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fresident_alien\\u002Fs03\"},{\"title\":\"The Tourist: Season 2\",\"tomatometer\":{\"tomatometer\":94,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fthe_tourist\\u002Fs02\"},{\"title\":\"Halo: Season 2\",\"tomatometer\":{\"tomatometer\":94,\"state\":\"fresh\",\"certifiedFresh\":false},\"tvPageUrl\":\"\\u002Ftv\\u002Fhalo\\u002Fs02\"}]}},\"legacyItems\":{\"tarsSlug\":\"rt-nav-list-tv-episodic-reviews\",\"tv\":{\"mediaLists\":[{},{},{},{\"title\":\"Episodic Reviews\",\"shows\":[{\"link\":\"\\u002Ftv\\u002Fbodies_2023\\u002Fs01\",\"showTitle\":\"Bodies: Season 1\"},{\"link\":\"\\u002Ftv\\u002Finvincible\\u002Fs02\",\"showTitle\":\"Invincible: Season 2\"},{\"link\":\"\\u002Ftv\\u002Fthe_bear\\u002Fs02\",\"showTitle\":\"The Bear: Season 2\"},{\"link\":\"\\u002Ftv\\u002Floki\\u002Fs02\",\"showTitle\":\"Loki: Season 2\"},{\"link\":\"\\u002Ftv\\u002Fthe_curse_2023\\u002Fs01\",\"showTitle\":\"The Curse: Season 1\"}]}]}}},\"links\":{\"moviesInTheaters\":{\"certifiedFresh\":\"\\u002Fbrowse\\u002Fmovies_in_theaters\\u002Fcritics:certified_fresh~sort:popular\",\"comingSoon\":\"\\u002Fbrowse\\u002Fmovies_coming_soon\\u002F\",\"openingThisWeek\":\"\\u002Fbrowse\\u002Fmovies_in_theaters\\u002Fsort:newest\",\"title\":\"\\u002Fbrowse\\u002Fmovies_in_theaters\",\"topBoxOffice\":\"\\u002Fbrowse\\u002Fmovies_in_theaters\"},\"onDvdAndStreaming\":{\"all\":\"\\u002Fbrowse\\u002Fmovies_at_home\\u002F\",\"certifiedFresh\":\"\\u002Fbrowse\\u002Fmovies_at_home\\u002Fcritics:certified_fresh\",\"title\":\"\\u002Fbrowse\\u002Fmovies_at_home\\u002F\",\"top\":\"\\u002Fbrowse\\u002Fmovies_at_home\\u002Fsort:popular\"},\"moreMovies\":{\"topMovies\":\"\\u002Fbrowse\\u002Fmovies_at_home\\u002Fsort:popular\",\"trailers\":\"\\u002Ftrailers\"},\"tvTonight\":\"\\u002Fbrowse\\u002Ftv_series_browse\\u002Fsort:newest\",\"tvPopular\":\"\\u002Fbrowse\\u002Ftv_series_browse\\u002Fsort:popular\",\"moreTv\":{\"topTv\":\"\\u002Fbrowse\\u002Ftv_series_browse\\u002Fsort:popular\",\"certifiedFresh\":\"\\u002Fbrowse\\u002Ftv_series_browse\\u002Fcritics:fresh\"},\"editorial\":{\"allTimeLists\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fall-time-lists\\u002F\",\"bingeGuide\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fbinge-guide\\u002F\",\"comicsOnTv\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fcomics-on-tv\\u002F\",\"countdown\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fcountdown\\u002F\",\"fiveFavoriteFilms\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Ffive-favorite-films\\u002F\",\"videoInterviews\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fvideo-interviews\\u002F\",\"weekendBoxOffice\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fweekend-box-office\\u002F\",\"weeklyKetchup\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fweekly-ketchup\\u002F\",\"whatToWatch\":\"https:\\u002F\\u002Feditorial.rottentomatoes.com\\u002Fwhat-to-watch\\u002F\"},\"advertisingFooter\":\"https:\\u002F\\u002Ftogether.nbcuni.com\\u002Fadvertise\\u002F?utm_source=rotten_tomatoes&utm_medium=referral&utm_campaign=property_ad_pages&utm_content=footer\",\"careers\":\"\\u002F\\u002Fwww.fandango.com\\u002Fcareers\",\"privacyPolicy\":\"https:\\u002F\\u002Fwww.nbcuniversal.com\\u002Ffandango-privacy-policy\",\"termsPolicies\":\"\\u002Fpolicies\\u002Fterms-and-policies\",\"californiaNotice\":\"https:\\u002F\\u002Fwww.nbcuniversal.com\\u002Fprivacy\\u002Fcalifornia-consumer-privacy-act\",\"cookieManagement\":\"https:\\u002F\\u002Fwww.nbcuniversal.com\\u002Fprivacy\\u002Fcookies#accordionheader2\"}};\nroot.BK = {\"PageName\":\"http:\\u002F\\u002Fwww.rottentomatoes.com\\u002F\",\"SiteID\":37528,\"SiteSection\":\"\"};\nroot.RottenTomatoes.thirdParty = {\"chartBeat\":{\"auth\":\"64558\",\"domain\":\"rottentomatoes.com\"},\"mpx\":{\"accountPid\":\"NGweTC\",\"playerPid\":\"y__7B0iQTi4P\",\"playerPidPDK6\":\"pdk6_y__7B0iQTi4P\",\"accountId\":\"2474312077\"},\"algoliaSearch\":{\"aId\":\"79FRDP12PN\",\"sId\":\"175588f6e5f8319b27702e4cc4013561\"},\"cognito\":{\"upId\":\"us-west-2_4L0ZX4b1U\",\"clientId\":\"7pu48v8i2n25t4vhes0edck31c\"}};\nroot.RottenTomatoes.serviceWorker = {\"isServiceWokerOn\":true};\nroot.__RT__ || (root.__RT__ = {});\nroot.__RT__.featureFlags = {\"adsCarouselHP\":false,\"adsCarouselHPSlug\":\"rt-sponsored-carousel-list-disney-plus\",\"adsCarouselOP\":false,\"adsCarouselOPSlug\":\"rt-sponsored-carousel-list-disney-plus\",\"adsHub\":false,\"adsMockDLP\":false,\"adsVideoSpotlightHP\":false,\"authVerboseLogs\":false,\"disableCriticValidation\":true,\"isolateAdComponents\":true,\"legacyBridge\":true,\"logoRT25\":true,\"redesignGlobalStyles\":false,\"redesignMovie\":false,\"redesignTvEpisode\":true,\"redesignTvSeason\":true,\"redesignTvSeries\":true};\nroot.RottenTomatoes.dtmData = {\"webVersion\":\"node\",\"rtVersion\":3.1,\"loggedInStatus\":\"\",\"customerId\":\"\",\"pageName\":\"rt | homepage\"};\nroot.RottenTomatoes.context.adsMockDLP = false;\nroot.RottenTomatoes.context.req = {\"params\":{},\"queries\":{},\"route\":{},\"url\":\"\\u002F\",\"secure\":false,\"buildVersion\":undefined};\nroot.RottenTomatoes.context.config = {};\nroot.RottenTomatoes.context.gptSite = \"home\";\n}(this));\n</script>\n\n        \n        <script fetchpriority=\"high\" src=\"/assets/pizza-pie/javascripts/bundles/roma/preload.5b05a88c974.js\"></script>\n        \n\n        <script  src=\"/assets/pizza-pie/javascripts/bundles/roma/vendors.37d2b700cb6.js\"></script>\n\n        <script  src=\"/assets/pizza-pie/javascripts/bundles/roma/default.080d72292ff.js\"></script>\n\n            \n            <script src=\"https://cdn.jsdelivr.net/npm/algoliasearch@4/dist/algoliasearch-lite.umd.js\"></script>\n\n            <script  src=\"/assets/pizza-pie/javascripts/bundles/roma/search-algolia.419f10c3c02.js\"></script>\n            \n        \n\n    \n    <script  src=\"/assets/pizza-pie/javascripts/roma/bundles/vendor.4a6b96a28a8.js\"></script>\n\n    \n\n    <script  src=\"/assets/pizza-pie/javascripts/roma/bundles/home.590fde603c8.js\"></script>\n\n\n\n        \n            \n            <script>\n                if (window.mps && typeof window.mps.writeFooter === 'function') {\n                    window.mps.writeFooter();\n                }\n            </script>\n            \n        \n\n        \n            \n            <script>\n                window._satellite && _satellite.pageBottom();\n            </script>\n            \n        \n\n        \n    </body>\n</html>\n"

Demo 2 - httr2 + headers

aaoif = function(
  resource = c("root", "books", "characters", "houses"), ..., 
  base_url = "https://www.anapioficeandfire.com/api/", verbose = TRUE
) {
  resource = match.arg(resource)
  
  get_links = function(resp) {
    resp |>
      resp_header("link") |>
      str_match_all('<(.*?)>; rel="([a-zA-Z]+)"') |>
      (\(x) (setNames(as.list(x[[1]][,2]), x[[1]][,3])))()
  }
  
  if (resource == "root")
    resource = ""
  
  resp = request(base_url) |>
    req_url_path_append(resource) |>
    req_url_query(...) |>
    req_perform()
  
  full = list()
  page = 1
  
  repeat {
    if (verbose) message("Grabbing page ", page)
    full = c(full, resp_body_json(resp))
    
    links = get_links(resp)
    if (is.null(links[["next"]]))
      break
    
    resp = request(links[["next"]]) |>
      req_perform()
    
    page = page+1
  }
  
  full |>
    tibble(data = _) |>
    unnest_wider(data)
}

Exercise 1

Using the AAOIF API answer the following questions:

  1. How many characters are included in this API?

  2. What percentage of the characters are dead?

  3. How many houses have an ancestral weapon?

05:00

Demo 3 - GitHub API

GitHub API(s)

GitHub provides two APIs for accessing the website and its data:

The REST api is more mature and provides access / interact with most of the data available on the website. The GraphQL api is more flexible and efficient, but is still under development and does not provide access to all the data available on the website.

To do almost anything useful with either API you will need to authenticate. This can be done via a personal access token (PAT) which is then passed as part of the http request header.